diff options
Diffstat (limited to 'config/services')
| -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"]; } |
