summary refs log tree commit diff stats
path: root/users.nix
diff options
context:
space:
mode:
authorsils <sils@sils.li>2023-04-20 18:25:45 +0200
committersils <sils@sils.li>2023-04-20 18:31:19 +0200
commit8b5e6cfeed2b5c7088cdf8a98bacee72ad6cabd4 (patch)
treebd77dade79e8c7e6f6f3a136d53fd5518d9ffcb9 /users.nix
parentFeat(packages.nix): Add pinentry (diff)
downloadnix-config-8b5e6cfeed2b5c7088cdf8a98bacee72ad6cabd4.tar.gz
nix-config-8b5e6cfeed2b5c7088cdf8a98bacee72ad6cabd4.zip
Feat(structure): Restructured repository
                 This is mainly convenience and my personal
                 preference.
Diffstat (limited to 'users.nix')
-rw-r--r--users.nix26
1 files changed, 0 insertions, 26 deletions
diff --git a/users.nix b/users.nix
deleted file mode 100644
index cff3e1d..0000000
--- a/users.nix
+++ /dev/null
@@ -1,26 +0,0 @@
-{
-  config,
-  pkgs,
-  ...
-}: {
-  users = {
-    mutableUsers = false;
-    users.sils = {
-      isNormalUser = true;
-      home = "/home/sils";
-      shell = pkgs.zsh;
-      initialHashedPassword = "$y$j9T$r4578Hy9jZHmUH9uSr9OI.$SuR2anRq7EJ1gUJ6vi9qYmZrhLP.o3O5643IG6r5Ap/";
-      extraGroups = ["wheel" "networkmanager"];
-    };
-    users.cnnr = {
-      isNormalUser = true;
-      home = "/home/cnnr";
-      shell = pkgs.zsh;
-      initialHashedPassword = "$y$j9T$NFz0d2coUOvl.hL3YRwEY0$8btvXUoWGWwo11ksdt8eIFUljCkpUe0YliEy7l0odU1";
-    };
-  };
-  services.xserver.displayManager.autoLogin = {
-    enable = true;
-    user = "sils";
-  };
-}