add flatpak support for kidney
This commit is contained in:
parent
0eaf4dfd5a
commit
9b1cdfb2e3
2 changed files with 15 additions and 0 deletions
|
@ -47,6 +47,10 @@ in {
|
|||
"programs/tools.nix"
|
||||
"programs/zsh.nix"
|
||||
"programs/home-manager.nix"
|
||||
"hardware/graphics.nix"
|
||||
|
||||
"services/flatpak.nix"
|
||||
"services/xdg-portals.nix"
|
||||
|
||||
"nix"
|
||||
"nix/gc.nix"
|
||||
|
|
11
system/services/xdg-portals.nix
Normal file
11
system/services/xdg-portals.nix
Normal file
|
@ -0,0 +1,11 @@
|
|||
{pkgs, ...}: {
|
||||
xdg.portal = {
|
||||
enable = true;
|
||||
extraPortals = with pkgs; [
|
||||
xdg-desktop-portal-gtk
|
||||
];
|
||||
config = {
|
||||
common.default = ["gtk"];
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue