mirror of
https://github.com/harryssecret/homelab-nix.git
synced 2025-08-08 14:40:19 +02:00
14 lines
274 B
Nix
14 lines
274 B
Nix
{ config, ... }:
|
|
{
|
|
services.flatpak.enable = true;
|
|
|
|
services.flatpak.packages = [
|
|
"com.unicornsonlsd.finamp"
|
|
];
|
|
|
|
services.flatpak.update.onActivation = true;
|
|
services.flatpak.update.auto = {
|
|
enable = true;
|
|
onCalendar = "weekly"; # Default value
|
|
};
|
|
}
|