diff options
author | Soispha <soispha@vhack.eu> | 2023-05-06 14:25:13 +0200 |
---|---|---|
committer | Soispha <soispha@vhack.eu> | 2023-05-06 14:34:24 +0200 |
commit | 568a79eda1b0779e1b051467b938ab6a0d355ca4 (patch) | |
tree | d457e96ef1f9e34c7a33c762a176c6e53678fa9c /sys/services/flatpak | |
parent | Fix(flake): Typo (diff) | |
download | nix-config-568a79eda1b0779e1b051467b938ab6a0d355ca4.tar.gz nix-config-568a79eda1b0779e1b051467b938ab6a0d355ca4.zip |
Feat(treewide): Add river window manager
Co-authored-by: sils <sils@sils.li>
Diffstat (limited to 'sys/services/flatpak')
-rw-r--r-- | sys/services/flatpak/default.nix | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sys/services/flatpak/default.nix b/sys/services/flatpak/default.nix index d1f4586..0cc6108 100644 --- a/sys/services/flatpak/default.nix +++ b/sys/services/flatpak/default.nix @@ -1,11 +1,11 @@ -{...}: { +{pkgs, ...}: { services.flatpak.enable = true; fileSystems."/var/lib/flatpak" = { device = "/srv/flatpak"; options = ["bind"]; }; - # xdg.portal = { - # enable = true; - # extraPortals = [pkgs.xdg-desktop-portal-gtk]; - # }; + xdg.portal = { + enable = true; + extraPortals = [pkgs.xdg-desktop-portal-gtk]; + }; } |