aboutsummaryrefslogtreecommitdiffstats
path: root/hosts/common
diff options
context:
space:
mode:
Diffstat (limited to 'hosts/common')
-rw-r--r--hosts/common/users/lin/default.nix18
1 files changed, 18 insertions, 0 deletions
diff --git a/hosts/common/users/lin/default.nix b/hosts/common/users/lin/default.nix
new file mode 100644
index 0000000..048a6fc
--- /dev/null
+++ b/hosts/common/users/lin/default.nix
@@ -0,0 +1,18 @@
+{ pkgs, config, ... }:
+let
+ ifTheyExist = groups: builtins.filter (group: builtins.hasAttr group config.users.groups) groups;
+ uid = 1001;
+in
+{
+ users.groups.lin.gid = uid;
+ users.users.lin = {
+ description = "Lindsey Holcomb";
+ group = "lin";
+ home = "/data/home/lin";
+ isNormalUser = true;
+
+ packages = [ pkgs.home-manager ];
+ #shell = pkgs.zsh;
+ uid = uid;
+ };
+}