add(nixos): flatpak support

used for deadlock mod manager flatpak
This commit is contained in:
kenji
2026-05-24 22:16:57 -05:00
parent 38ba89c2b7
commit 8c5200d2fb
2 changed files with 7 additions and 0 deletions
+1
View File
@@ -2,6 +2,7 @@
imports = [
./apps-optional.nix
./backlight.nix
./flatpak.nix
./btop.nix
./boot.nix
./fonts.nix
+6
View File
@@ -0,0 +1,6 @@
{pkgs, ...}: {
services.flatpak.enable = true;
# GTK portal required by most Flatpak apps for file chooser and other dialogs
xdg.portal.extraPortals = [pkgs.xdg-desktop-portal-gtk];
}