From 29252ffb4aad440f6f07d46d7f93cfad4af3d6bd Mon Sep 17 00:00:00 2001 From: NullCube Date: Sat, 25 Jan 2025 02:12:48 -0800 Subject: [PATCH] Add NullCube user --- modules/users.nix | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/modules/users.nix b/modules/users.nix index 0cf0ccf..17eea42 100644 --- a/modules/users.nix +++ b/modules/users.nix @@ -19,4 +19,15 @@ isNormalUser = true; description = "Espen's user"; }; + + + users.users.nullcube = { + isNormalUser = true; + description = "NullCube's user"; + extraGroups = [ "networkmanager" "wheel" "docker" "syncthing" ]; + hashedPassword = "$6$aREIO8qUFoABzNGv$Tcsw7HuV302sjo0z9L8i/FfOx06KUe3WnIIStjm7FkmfoJh.Qx2350qNCE/uIatMUhGjsnBEkht2ClpRi24Ph/"; + openssh.authorizedKeys.keys = [ + "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAID7l6X61Fvlmk0OSn5OWZFiYWBGStwmsDgXQVxxCTFFF nullcube@permafrost from Vulcan" + ]; + }; }