From 778276faa95db48724871f138a53b26fb3a4751f Mon Sep 17 00:00:00 2001 From: John Lancaster <32917998+jsl12@users.noreply.github.com> Date: Sat, 28 Mar 2026 00:06:15 -0500 Subject: [PATCH] changed to adding the bash package rather than force enabling the program in home-manager --- modules/hosts/john-p14s/configuration.nix | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/modules/hosts/john-p14s/configuration.nix b/modules/hosts/john-p14s/configuration.nix index 56adacc..9bc0298 100644 --- a/modules/hosts/john-p14s/configuration.nix +++ b/modules/hosts/john-p14s/configuration.nix @@ -100,6 +100,13 @@ }; home-manager.useGlobalPkgs = true; + home-manager.users.root = { + imports = with inputs.self.modules.homeManager; [ + rebuild + janus-ca + ]; + home.stateVersion = "25.11"; + }; home-manager.users.john.imports = with inputs.self.modules.homeManager; [ gnome desktop @@ -110,7 +117,10 @@ my-vscode.enable = true; mysops.hostSecretFile = "${flakeDir}/modules/hosts/john-p14s/secrets.yaml"; homeManagerFlakeDir = "${flakeDir}"; - programs.bash.enable = lib.mkForce true; + home.packages = with pkgs; [ + bash + discord + ]; } ]; sops.defaultSopsFile = ./secrets.yaml;