commit 4738d6a865dc37e5d9a8bbc4e95b5c3dbdc56afb
parent a4e1b4f66e6bc7f16bf81b71d4f0a12ab98d39a6
Author: Vincent Demeester <vincent@sbr.pm>
Date: Fri, 10 Sep 2021 17:17:17 +0200
systems: disable auto-update…
I will replace this with `morph`, thus no more need for each machine
to update itself.
Signed-off-by: Vincent Demeester <vincent@sbr.pm>
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/systems/modules/profiles/nix-auto-update.nix b/systems/modules/profiles/nix-auto-update.nix
@@ -8,7 +8,7 @@ in
options = {
profiles.nix-auto-update = {
enable = mkOption {
- default = true;
+ default = false;
description = "Enable nix-auto-update profile";
type = types.bool;
};