From 9cd36bf099d8388925456aa68a14dfd0750920a5 Mon Sep 17 00:00:00 2001 From: Evie Litherland-Smith Date: Thu, 22 Jun 2023 14:40:20 +0100 Subject: [PATCH] Enable auto-updates for Vanguard using flake --- hosts/Vanguard/configuration.nix | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/hosts/Vanguard/configuration.nix b/hosts/Vanguard/configuration.nix index 1998c81b..2fdb1b00 100644 --- a/hosts/Vanguard/configuration.nix +++ b/hosts/Vanguard/configuration.nix @@ -38,7 +38,11 @@ networking = { hostName = "Vanguard"; # Define your hostname. nameservers = ["192.168.1.230" "9.9.9.9"]; - firewall = {enable = true;}; + }; + system.autoUpgrade = { + enable = true; + flake = "git+https://git.xenia.me.uk/xenia/nixos.git?ref=flake-conversion"; + allowReboot = false; }; environment.systemPackages = with pkgs; [mesa];