summaryrefslogtreecommitdiff
path: root/os/wm/wm.nix
diff options
context:
space:
mode:
authoradikro <adikro@disroot.org>2026-04-12 23:47:47 +0200
committeradikro <adikro@disroot.org>2026-04-12 23:47:47 +0200
commitbf126b5e1ae5cbab3b62c00bbff614a23539e431 (patch)
treeb275c56596eaf3f5754cea30f04e84bbcc21e305 /os/wm/wm.nix
parent3ed184c48a1154a2548df807c8aaae7888e4792c (diff)
finalized client configs for tor, i2pd and yggdrasil
Diffstat (limited to 'os/wm/wm.nix')
-rw-r--r--os/wm/wm.nix39
1 files changed, 0 insertions, 39 deletions
diff --git a/os/wm/wm.nix b/os/wm/wm.nix
deleted file mode 100644
index a9046bb..0000000
--- a/os/wm/wm.nix
+++ /dev/null
@@ -1,39 +0,0 @@
-{
- config,
- lib,
- pkgs,
- ...
-}:
-let
- cfg = config.os.wm;
-in
-{
- imports = [
- ./niri.nix
- ];
-
- options.os.wm.enable = lib.mkEnableOption "enables shared wm features";
-
- config = lib.mkIf cfg.enable {
- services.dbus.enable = true;
-
- xdg.portal = {
- enable = true;
- xdgOpenUsePortal = true;
-
- extraPortals = [
- pkgs.xdg-desktop-portal-gnome
- pkgs.xdg-desktop-portal-gtk
- ];
-
- config = {
- common.default = [ "gtk" ];
- niri = {
- "org.freedesktop.impl.portal.ScreenCast" = [ "gnome" ];
- "org.freedesktop.impl.portal.Screenshot" = [ "gnome" ];
- "default" = [ "gtk" ];
- };
- };
- };
- };
-}