Create flatpak.nix

This commit is contained in:
2026-04-05 15:38:33 +02:00
parent 0b3cdf9ea8
commit d1833db57c
+12
View File
@@ -0,0 +1,12 @@
{ ... }:
{
services.flatpak.enable = true;
services.flatpak.update.auto = {
enable = true;
onCalendar = "weekly"; # Default value
};
services.flatpak.packages = [
"com.usebottles.bottles"
];
}