mirror of
https://github.com/harryssecret/homelab-nix.git
synced 2025-01-19 13:49:33 +01:00
16 lines
331 B
Nix
16 lines
331 B
Nix
{config, ...}: {
|
|
services.flatpak.enable = true;
|
|
|
|
services.flatpak.packages = [
|
|
"io.github.zen_browser.zen"
|
|
"dev.vencord.Vesktop"
|
|
"com.unicornsonlsd.finamp"
|
|
];
|
|
|
|
services.flatpak.update.onActivation = true;
|
|
services.flatpak.update.auto = {
|
|
enable = true;
|
|
onCalendar = "weekly"; # Default value
|
|
};
|
|
}
|