nixos/tuptime: 5.2.2 renamed option -x to -q

This commit is contained in:
Evils 2023-01-07 17:45:23 +01:00 committed by pennae
parent 07e328d4ce
commit e6fe2eb0ed

View File

@ -54,8 +54,8 @@ in {
Type = "oneshot"; Type = "oneshot";
User = "_tuptime"; User = "_tuptime";
RemainAfterExit = true; RemainAfterExit = true;
ExecStart = "${pkgs.tuptime}/bin/tuptime -x"; ExecStart = "${pkgs.tuptime}/bin/tuptime -q";
ExecStop = "${pkgs.tuptime}/bin/tuptime -xg"; ExecStop = "${pkgs.tuptime}/bin/tuptime -qg";
}; };
}; };
@ -64,7 +64,7 @@ in {
serviceConfig = { serviceConfig = {
Type = "oneshot"; Type = "oneshot";
User = "_tuptime"; User = "_tuptime";
ExecStart = "${pkgs.tuptime}/bin/tuptime -x"; ExecStart = "${pkgs.tuptime}/bin/tuptime -q";
}; };
}; };
}; };