diff --git a/modules/hosts/HACKSTATION/default.nix b/modules/hosts/HACKSTATION/default.nix index e50078d..5dff896 100644 --- a/modules/hosts/HACKSTATION/default.nix +++ b/modules/hosts/HACKSTATION/default.nix @@ -5,7 +5,7 @@ }: { flake.nixosConfigurations.HACKSTATION = inputs.nixpkgs.lib.nixosSystem { modules = with self.nixosModules; [ - core + desktop hackstationConfiguration ]; }; diff --git a/modules/system/desktop/default.nix b/modules/system/desktop/default.nix new file mode 100644 index 0000000..92113f2 --- /dev/null +++ b/modules/system/desktop/default.nix @@ -0,0 +1,19 @@ +{ + self, + inputs, + ... +}: { + flake.nixosModules.desktop = { + pkgs, + lib, + ... + }: let + modules = with self.nixosModules; [ + core + hyprland + sddm + ]; + in { + imports = modules; + }; +}