From 537dd3d39b72bac25842f48f2727b9a3eaf037c4 Mon Sep 17 00:00:00 2001 From: joshashtondev Date: Thu, 6 Aug 2026 21:20:16 -0600 Subject: [PATCH] =?UTF-8?q?nixos:=20gen=2012=20@=20lavender=20=E2=80=94=20?= =?UTF-8?q?2026-08-06=2021:18=2026.05.20260724.597283a=20(Yarara)=20-----?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- system/packages.nix | 1 + system/security/users.nix | 10 ++++++++++ 2 files changed, 11 insertions(+) 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; };