summaryrefslogtreecommitdiff
path: root/sys/wm
diff options
context:
space:
mode:
Diffstat (limited to 'sys/wm')
-rw-r--r--sys/wm/wm.nix4
1 files changed, 1 insertions, 3 deletions
diff --git a/sys/wm/wm.nix b/sys/wm/wm.nix
index efe39ab..5374264 100644
--- a/sys/wm/wm.nix
+++ b/sys/wm/wm.nix
@@ -8,15 +8,13 @@ in
];
options.sys.wm.enable = lib.mkEnableOption "enables shared wm features";
-
- config = lib.mkIf (cfg.enable || cfg.niri.enable or false) {
+ config = lib.mkIf cfg.enable {
services.dbus.enable = true;
xdg.portal = {
enable = true;
xdgOpenUsePortal = true;
extraPortals = [ pkgs.xdg-desktop-portal-gtk ];
- config.common.default = [ "gtk" ];
};
};
}