From 871d3f95963eac25765427ecca9a8e4812071439 Mon Sep 17 00:00:00 2001 From: ene Date: Wed, 1 Feb 2023 21:33:11 +0100 Subject: Feat: Split the config apart --- system/users/users.nix | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 system/users/users.nix (limited to 'system/users') diff --git a/system/users/users.nix b/system/users/users.nix new file mode 100644 index 00000000..ca2fc352 --- /dev/null +++ b/system/users/users.nix @@ -0,0 +1,17 @@ +{ + 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; + }; + }; +} -- cgit 1.4.1