From f7634949fa4e744cd5a930505ac4e9b4f81dc530 Mon Sep 17 00:00:00 2001 From: ene Date: Sat, 11 Feb 2023 12:07:32 +0100 Subject: Feat: Switch to default.nix --- system/users/default.nix | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 system/users/default.nix (limited to 'system/users/default.nix') diff --git a/system/users/default.nix b/system/users/default.nix new file mode 100644 index 00000000..2c962c26 --- /dev/null +++ b/system/users/default.nix @@ -0,0 +1,17 @@ +{ + config, + pkgs, + ... +}: { + users = { + mutableUsers = false; + users.soispha = { + isNormalUser = true; + home = "/srv/home/soispha"; + shell = pkgs.zsh; + initialHashedPassword = "$y$jFT$ONrCqZIJKB7engmfA4orD/$0GO58/wV5wrYWj0cyONhyujZPjFmbT0XKtx2AvXLG0B"; + extraGroups = ["wheel"]; + uid = 1000; + }; + }; +} -- cgit 1.4.1