summaryrefslogtreecommitdiff
path: root/sys/wm
diff options
context:
space:
mode:
authoradikro <adikro@disroot.org>2025-12-23 09:30:43 +0100
committeradikro <adikro@disroot.org>2025-12-23 09:30:43 +0100
commit2e0eb02fd744aed40ce61c56f5807c1e5e6f1224 (patch)
tree5f39d14f8a763cbb7fd5d1519e42f0ea01d5a11b /sys/wm
parent49bf16698295cd068e125333ec2f7c7bfa6bda27 (diff)
added obs clips and a basic mpv config to be finished
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" ];
};
};
}