From 3915ed8a462fecf58f5d981a1a710dd8baa15ced Mon Sep 17 00:00:00 2001 From: Mikhail Klementev Date: Tue, 17 Dec 2024 09:10:13 +0000 Subject: [PATCH] make sure bash is in the nixos-upgrade PATH --- configuration.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/configuration.nix b/configuration.nix index e8696bb..cf9b9db 100644 --- a/configuration.nix +++ b/configuration.nix @@ -254,6 +254,8 @@ in { time.timeZone = "UTC"; + systemd.services.nixos-upgrade.path = lib.mkAfter [ pkgs.bash ]; + system.autoUpgrade = { enable = true; allowReboot = true;