From b3718bc47c8f320b647b4394671347444d1a3692 Mon Sep 17 00:00:00 2001 From: buffet Date: Mon, 3 Jun 2024 10:42:59 +0200 Subject: [PATCH] fix: don't use accept-flake-config for nixos-rebuild Apparently this is just not a flag. Need to figure out what to do instead, but at the moment ami isn't using any extra caches anyways. --- hosts/ami/upgrade.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hosts/ami/upgrade.nix b/hosts/ami/upgrade.nix index 1482adb..d87212e 100644 --- a/hosts/ami/upgrade.nix +++ b/hosts/ami/upgrade.nix @@ -2,7 +2,7 @@ _: { system.autoUpgrade = { enable = true; flake = "https://buffets.kitchen/kitchen/rice/archive/main.tar.gz#ami"; - flags = ["--option" "tarball-ttl" "0" "--accept-flake-config"]; + flags = ["--option" "tarball-ttl" "0"]; dates = "minutely"; allowReboot = true;