summary refs log tree commit diff stats
path: root/sys/services/flatpak
diff options
context:
space:
mode:
authorSoispha <soispha@vhack.eu>2023-05-06 14:25:13 +0200
committerSoispha <soispha@vhack.eu>2023-05-06 14:34:24 +0200
commit568a79eda1b0779e1b051467b938ab6a0d355ca4 (patch)
treed457e96ef1f9e34c7a33c762a176c6e53678fa9c /sys/services/flatpak
parentFix(flake): Typo (diff)
downloadnix-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.nix10
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];
+  };
 }