14 lines
232 B
Nix
14 lines
232 B
Nix
{ pkgs, ... }: {
|
|
xdg.portal = {
|
|
enable = true;
|
|
extraPortals = [ pkgs.xdg-desktop-portal-gtk ];
|
|
};
|
|
services = {
|
|
flatpak = {
|
|
enable = true;
|
|
packages = [ ];
|
|
update.onActivation = true;
|
|
};
|
|
};
|
|
}
|