summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorquentin@aristote.fr <quentin@aristote.fr>2024-09-01 09:53:41 +0200
committerquentin@aristote.fr <quentin@aristote.fr>2024-09-01 10:42:27 +0200
commit93f448c98cc72b3988fe2b4f1dd41eca4ae1e7e2 (patch)
treee02474228a471406fb94e86273e96ebcd8786494
parent9dd558e8f2cb8459dc285414d2a109a3352e98b9 (diff)
fix leftover --update-input flag
-rw-r--r--config/services/web/quentin/default.nix8
1 files 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"];
}