add flatpak support for kidney

This commit is contained in:
xunuwu 2024-08-29 08:56:47 +00:00
parent 0eaf4dfd5a
commit 9b1cdfb2e3
No known key found for this signature in database
2 changed files with 15 additions and 0 deletions

View file

@ -47,6 +47,10 @@ in {
"programs/tools.nix" "programs/tools.nix"
"programs/zsh.nix" "programs/zsh.nix"
"programs/home-manager.nix" "programs/home-manager.nix"
"hardware/graphics.nix"
"services/flatpak.nix"
"services/xdg-portals.nix"
"nix" "nix"
"nix/gc.nix" "nix/gc.nix"

View file

@ -0,0 +1,11 @@
{pkgs, ...}: {
xdg.portal = {
enable = true;
extraPortals = with pkgs; [
xdg-desktop-portal-gtk
];
config = {
common.default = ["gtk"];
};
};
}