diff --git a/system/packages.nix b/system/packages.nix index 32267cd..b82da98 100644 --- a/system/packages.nix +++ b/system/packages.nix @@ -30,6 +30,7 @@ ollama pasystray pulseaudioFull + rclone rnote sops ssh-to-age diff --git a/system/security/users.nix b/system/security/users.nix index ed3967e..901db53 100644 --- a/system/security/users.nix +++ b/system/security/users.nix @@ -3,6 +3,8 @@ { users.groups.jashton = {}; users.groups.greetd = {}; + users.groups.heliotrope = {}; + users.users.jashton = { isNormalUser = true; description = "Josh Ashton"; @@ -12,6 +14,14 @@ shell = pkgs.zsh; }; + users.users.heliotrope = { + isNormalUser = true; + description = "Remote Server heliotrope."; + group = "heliotrope"; + + shell = pkgs.zsh; + }; + users.users.root = { shell = pkgs.zsh; };