From 93f448c98cc72b3988fe2b4f1dd41eca4ae1e7e2 Mon Sep 17 00:00:00 2001 From: "quentin@aristote.fr" Date: Sun, 1 Sep 2024 09:53:41 +0200 Subject: fix leftover --update-input flag --- config/services/web/quentin/default.nix | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/config/services/web/quentin/default.nix b/config/services/web/quentin/default.nix index 66628a9..7344f36 100644 --- a/config/services/web/quentin/default.nix +++ b/config/services/web/quentin/default.nix @@ -1,6 +1,8 @@ -{ config, pkgs, ... }: - { + config, + pkgs, + ... +}: { services.nginx.virtualHosts.quentin = { serverName = "quentin.${config.networking.domain}"; locations."/".root = "${pkgs.personal.webpage}"; @@ -13,5 +15,5 @@ }; # automatically fetch (non-structural) website updates when updating the system - system.autoUpgrade.flags = [ "--update-input" "personal-webpage/data" ]; + personal.nix.autoUpgrade.autoUpdateInputs = ["personal-webpage/data"]; } -- cgit v1.2.3