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;