diff options
author | Soispha <soispha@vhack.eu> | 2023-12-29 11:37:35 +0100 |
---|---|---|
committer | Soispha <soispha@vhack.eu> | 2023-12-29 11:37:35 +0100 |
commit | 9e00787500d2a867a6526de30cc0f908c1e48b39 (patch) | |
tree | 11a767ed7fc3a8e45c51b42c0fa1f8004a7c50ee /sys | |
parent | build(flake): Update (diff) | |
download | nixos-config-9e00787500d2a867a6526de30cc0f908c1e48b39.tar.gz nixos-config-9e00787500d2a867a6526de30cc0f908c1e48b39.zip |
fix(sys/svcs/xdg/portal): Actually enable termfilechooser and wlr
Diffstat (limited to '')
-rw-r--r-- | sys/svcs/xdg/default.nix | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/sys/svcs/xdg/default.nix b/sys/svcs/xdg/default.nix index e2392213..004e3b4c 100644 --- a/sys/svcs/xdg/default.nix +++ b/sys/svcs/xdg/default.nix @@ -8,7 +8,7 @@ portal = { enable = true; termfilechooser = { - enable = false; + enable = true; settings = { filechooser = { cmd = "${sysLib.writeShellScriptWithLibraryAndKeepPath { @@ -21,6 +21,9 @@ }; }; }; + wlr = { + enable = true; + }; config = { common = { # NOTE: The next entry is supposedly needed for gtk based apps <2023-08-31> |