diff options
Diffstat (limited to 'machines/common/user.nix')
| -rw-r--r-- | machines/common/user.nix | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/machines/common/user.nix b/machines/common/user.nix new file mode 100644 index 0000000..adac815 --- /dev/null +++ b/machines/common/user.nix @@ -0,0 +1,13 @@ +{...}: { + users.users.kassouni = { + isNormalUser = true; + home = "/home/kassouni"; + extraGroups = [ + "wheel" + "video" + "docker" + "input" + "audio" + ]; + }; +} |
