Add flatpak autoupdate and set Zen as default browser
This commit is contained in:
parent
91d06b500d
commit
0f48f2e29f
2 changed files with 39 additions and 20 deletions
|
|
@ -494,6 +494,25 @@
|
|||
};
|
||||
};
|
||||
|
||||
systemd.services.flatpak-update = {
|
||||
description = "Update Flatpak apps";
|
||||
serviceConfig = {
|
||||
Type = "oneshot";
|
||||
};
|
||||
script = ''
|
||||
${pkgs.flatpak}/bin/flatpak update -y --noninteractive
|
||||
'';
|
||||
};
|
||||
|
||||
systemd.timers.flatpak-update = {
|
||||
wantedBy = [ "timers.target" ];
|
||||
timerConfig = {
|
||||
OnCalendar = "daily";
|
||||
RandomizedDelaySec = "1h";
|
||||
Persistent = true;
|
||||
};
|
||||
};
|
||||
|
||||
nix.gc = {
|
||||
automatic = true;
|
||||
dates = "weekly";
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue