From 0ba9ee4bad436fa48240b1710e1c4bafca83261d Mon Sep 17 00:00:00 2001 From: voidarc Date: Sat, 4 Jul 2026 18:26:23 +0100 Subject: [PATCH] added desktop system preset --- modules/hosts/HACKSTATION/default.nix | 2 +- modules/system/desktop/default.nix | 19 +++++++++++++++++++ 2 files changed, 20 insertions(+), 1 deletion(-) create mode 100644 modules/system/desktop/default.nix 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; + }; +}