mirror of
https://github.com/harryssecret/homelab-nix.git
synced 2025-01-19 05:39:34 +01:00
15 lines
305 B
Nix
15 lines
305 B
Nix
|
{config, ...}: {
|
||
|
services.flatpak.enable = true;
|
||
|
|
||
|
services.flatpak.packages = [
|
||
|
"io.github.zen_browser.zen"
|
||
|
"com.unicornsonlsd.finamp"
|
||
|
];
|
||
|
|
||
|
services.flatpak.update.onActivation = true;
|
||
|
services.flatpak.update.auto = {
|
||
|
enable = true;
|
||
|
onCalendar = "weekly"; # Default value
|
||
|
};
|
||
|
}
|