mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 16:59:43 +01:00
19 lines
401 B
Nix
19 lines
401 B
Nix
|
{ config, ... }:
|
||
|
|
||
|
{
|
||
|
config = {
|
||
|
services.home-manager.autoUpgrade = {
|
||
|
enable = true;
|
||
|
frequency = "00:00";
|
||
|
};
|
||
|
|
||
|
nmt.script = ''
|
||
|
serviceFile=home-files/.config/systemd/user/home-manager-auto-upgrade.service
|
||
|
assertFileExists $serviceFile
|
||
|
|
||
|
timerFile=home-files/.config/systemd/user/home-manager-auto-upgrade.timer
|
||
|
assertFileExists $timerFile
|
||
|
'';
|
||
|
};
|
||
|
}
|