diff --git a/flake.nix b/flake.nix index 2350b503..707c032b 100644 --- a/flake.nix +++ b/flake.nix @@ -119,8 +119,8 @@ pubsolaros-light = [ core-light base-user users.root ]; hensoko = pubsolaros ++ [ users.hensoko ]; hensoko-light = pubsolaros-light ++ [ users.hensoko ]; - giggles = hensoko-light ++ []; - norman = hensoko ++ [ graphical ]; + giggles = hensoko-light ++ [ ]; + norman = hensoko ++ [ graphical work ]; redpanda = hensoko; ringo = hensoko-light ++ [ graphical ]; }; diff --git a/hosts/norman/norman.nix b/hosts/norman/norman.nix index 52e39eb3..2352fda2 100644 --- a/hosts/norman/norman.nix +++ b/hosts/norman/norman.nix @@ -9,8 +9,6 @@ in ./configuration.nix ]; - pub-solar.nextcloud.enable = lib.mkForce false; - config = { home-manager.users."${psCfg.user.name}".xdg.configFile = mkIf psCfg.sway.enable { "sway/config.d/10-screens.conf".source = ./.config/sway/config.d/screens.conf; diff --git a/profiles/work/default.nix b/profiles/work/default.nix new file mode 100644 index 00000000..d38227b7 --- /dev/null +++ b/profiles/work/default.nix @@ -0,0 +1,18 @@ +{ self, config, home-manager, lib, pkgs, inputs, ... }: +let + psCfg = config.pub-solar; +in +{ + # Sets nrdxp.cachix.org binary cache which just speeds up some builds + imports = [ ../cachix ]; + + environment.systemPackages = with pkgs; [ + python39Full + python39Packages.pyyaml + remmina + vscode + vscode-extensions.golang.go + vscode-extensions.ms-python.python + ]; + +}