7 lines
194 B
Nix
7 lines
194 B
Nix
|
{ ... }: {
|
||
|
services.flatpak = {
|
||
|
enable = true;
|
||
|
uninstallUnmanaged = true;
|
||
|
remotes = [ { name = "flathub"; location = "https://flathub.org/repo/flathub.flatpakrepo"; } ];
|
||
|
};
|
||
|
}
|