about summary refs log tree commit diff stats
path: root/system/users.nix
diff options
context:
space:
mode:
authorene <ene@sils.li>2023-02-01 21:33:11 +0100
committerene <ene@sils.li>2023-02-03 17:34:11 +0100
commit871d3f95963eac25765427ecca9a8e4812071439 (patch)
tree5dcf241ece31050cf0c74219852242abe504e068 /system/users.nix
parentBuild(flake): Added Flake.lock (diff)
downloadnixos-config-871d3f95963eac25765427ecca9a8e4812071439.zip
Feat: Split the config apart
Diffstat (limited to 'system/users.nix')
-rw-r--r--system/users.nix17
1 files changed, 0 insertions, 17 deletions
diff --git a/system/users.nix b/system/users.nix
deleted file mode 100644
index ca2fc352..00000000
--- a/system/users.nix
+++ /dev/null
@@ -1,17 +0,0 @@
-{
-  config,
-  pkgs,
-  ...
-}: {
-  users = {
-    mutableUsers = false;
-    users.soispha = {
-      isNormalUser = true;
-      home = "/home/soispha";
-      shell = pkgs.zsh;
-      initialHashedPassword = "$y$jFT$ONrCqZIJKB7engmfA4orD/$0GO58/wV5wrYWj0cyONhyujZPjFmbT0XKtx2AvXLG0B";
-      extraGroups = ["wheel"];
-      uid = 1000;
-    };
-  };
-}