From 052a588986989cb0e6f31c7b7a1114243b9975b6 Mon Sep 17 00:00:00 2001 From: David Crompton Date: Tue, 1 Aug 2023 10:28:29 -0400 Subject: [PATCH] Add Darian --- machines/kcnhub/users/darian.nix | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 machines/kcnhub/users/darian.nix diff --git a/machines/kcnhub/users/darian.nix b/machines/kcnhub/users/darian.nix new file mode 100644 index 0000000..0488396 --- /dev/null +++ b/machines/kcnhub/users/darian.nix @@ -0,0 +1,12 @@ +{ pkgs, ... }: { + users.users.darian = { + isNormalUser = true; + extraGroups = [ "wheel" ]; + homeSize = "25g"; + homeProjectId = 100; + packages = with pkgs; [ + + ]; + initialHashedPassword = "$y$j9T$mIMzeLognQ/P1ZkW2t1ta/$.gfijZOp9BgaxZbi1PllzYERIIEOSk4m2fojZdZUCk."; + }; +}