diff options
| author | quentin@aristote.fr <quentin@aristote.fr> | 2024-09-01 09:53:41 +0200 |
|---|---|---|
| committer | quentin@aristote.fr <quentin@aristote.fr> | 2024-09-01 10:42:27 +0200 |
| commit | 93f448c98cc72b3988fe2b4f1dd41eca4ae1e7e2 (patch) | |
| tree | e02474228a471406fb94e86273e96ebcd8786494 /config/services/web/quentin/default.nix | |
| parent | 9dd558e8f2cb8459dc285414d2a109a3352e98b9 (diff) | |
fix leftover --update-input flag
Diffstat (limited to 'config/services/web/quentin/default.nix')
| -rw-r--r-- | config/services/web/quentin/default.nix | 8 |
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"]; } |
