diff options
author | Azat Bahawi <azat@bahawi.net> | 2022-11-10 14:19:19 +0300 |
---|---|---|
committer | Azat Bahawi <azat@bahawi.net> | 2022-11-10 14:19:19 +0300 |
commit | 164b2b3f693dd5da3c1b1661e43c45b36a6b764c (patch) | |
tree | 2fc9a4ab1d3b44a3eb6d686b42527a18411c240b /configurations/manwe/webserver.nix | |
parent | 2022-10-26 (diff) |
2022-11-10
Diffstat (limited to '')
-rw-r--r-- | configurations/manwe/webserver.nix | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/configurations/manwe/webserver.nix b/configurations/manwe/webserver.nix index dde3e63..e1ee425 100644 --- a/configurations/manwe/webserver.nix +++ b/configurations/manwe/webserver.nix @@ -4,7 +4,7 @@ ... }: with lib; { - config.nixfiles.modules.nginx.virtualHosts = with my.domain; + nixfiles.modules.nginx.virtualHosts = with my.domain; { ${shire}.locations."/".return = "301 https://www.youtube.com/watch?v=dQw4w9WgXcQ"; "git.${shire}".locations."/".return = "301 https://git.${azahi}"; @@ -20,4 +20,6 @@ with lib; { ${gondor}.locations."/".return = concatStrings [frodo gondor]; ${rohan}.locations."/".return = concatStrings [frodo rohan]; }); + + system.extraDependencies = [inputs.azahi-cc]; } |