diff options
| author | Mark Nipper <nipsy@bitgnome.net> | 2026-05-21 21:39:31 -0700 |
|---|---|---|
| committer | Mark Nipper <nipsy@bitgnome.net> | 2026-05-21 21:39:31 -0700 |
| commit | 86607cc679f76c74fc5b31e58d473210634e9d3d (patch) | |
| tree | 6b339f85a8667214e982346f000e07a0519cf51d /hosts/common/users/trent/default.nix | |
| parent | c4157b439b4705becf48314fea6139da8a495354 (diff) | |
| download | nix-86607cc679f76c74fc5b31e58d473210634e9d3d.tar nix-86607cc679f76c74fc5b31e58d473210634e9d3d.tar.gz nix-86607cc679f76c74fc5b31e58d473210634e9d3d.tar.bz2 nix-86607cc679f76c74fc5b31e58d473210634e9d3d.tar.lz nix-86607cc679f76c74fc5b31e58d473210634e9d3d.tar.xz nix-86607cc679f76c74fc5b31e58d473210634e9d3d.tar.zst nix-86607cc679f76c74fc5b31e58d473210634e9d3d.zip | |
Diffstat (limited to 'hosts/common/users/trent/default.nix')
| -rw-r--r-- | hosts/common/users/trent/default.nix | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/hosts/common/users/trent/default.nix b/hosts/common/users/trent/default.nix deleted file mode 100644 index 47c6ead..0000000 --- a/hosts/common/users/trent/default.nix +++ /dev/null @@ -1,34 +0,0 @@ -{ pkgs, inputs, config, ... }: -let - ifTheyExist = groups: builtins.filter (group: builtins.hasAttr group config.users.groups) groups; - uid = 1001; -in -{ - users.groups.trent.gid = uid; - users.users.trent = { - description = "Trent Guthrie"; - extraGroups = [ - "audio" - "video" - "wheel" - ] ++ ifTheyExist [ - "adbusers" - "dialout" - "gamemode" - "networkmanager" - "vboxsf" - "vboxusers" - ]; - group = "trent"; - home = "/home/trent"; - isNormalUser = true; - openssh.authorizedKeys.keys = [ - (builtins.readFile ./keys/id.pub) - #(builtins.readFile ./keys/id_other.pub) - ]; - - packages = [ pkgs.home-manager ]; - shell = pkgs.bash; - uid = uid; - }; -} |
