summaryrefslogtreecommitdiff
path: root/hosts/common/desktop/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'hosts/common/desktop/default.nix')
-rw-r--r--hosts/common/desktop/default.nix20
1 files changed, 14 insertions, 6 deletions
diff --git a/hosts/common/desktop/default.nix b/hosts/common/desktop/default.nix
index d6d42a6..3f6aba7 100644
--- a/hosts/common/desktop/default.nix
+++ b/hosts/common/desktop/default.nix
@@ -1,14 +1,22 @@
{
- config,
lib,
+ desktop,
...
}: let
- gui = config.sys.gui.enable;
+ gui = desktop != "";
in {
- imports = [
- ./gnome.nix
- ./plasma.nix
- ];
+ imports =
+ []
+ ++ (
+ if (desktop == "gnome")
+ then [./gnome.nix]
+ else []
+ )
+ ++ (
+ if (desktop == "plasma")
+ then [./plasma.nix]
+ else []
+ );
environment.noXlibs = lib.mkForce false;
programs.xwayland.enable = gui;