Compare commits

..

No commits in common. "70aedf03f6ed5b3cda8bebedfea9df555e1160d3" and "860435e50d48a86f6f070ec378198cc5edae4d1a" have entirely different histories.

3 changed files with 1 additions and 12 deletions

View File

@ -70,7 +70,6 @@
in in
{ {
devShells.default = pkgs.mkShell { devShells.default = pkgs.mkShell {
name = "athens";
buildInputs = [ deploy-rs.packages.${system}.deploy-rs pkgs.sops ]; buildInputs = [ deploy-rs.packages.${system}.deploy-rs pkgs.sops ];
}; };
}) // { }) // {

View File

@ -18,7 +18,6 @@ in
enable = true; enable = true;
config = '' config = ''
. { . {
bind 127.0.0.1
bind ${cfg.addr} bind ${cfg.addr}
prometheus ${cfg.addr}:9153 prometheus ${cfg.addr}:9153
log log
@ -36,10 +35,5 @@ in
} }
''; '';
}; };
networking = {
nameservers = [ "127.0.0.1" ];
search = [ "walkah.lab" ];
};
}; };
} }

View File

@ -44,11 +44,7 @@ in
virtualHosts."walkah.cloud" = { virtualHosts."walkah.cloud" = {
forceSSL = true; forceSSL = true;
enableACME = true; enableACME = true;
locations."/" = { proxyPass = "http://127.0.0.1:8080"; }; locations."/" = { proxyPass = "http://127.0.0.1:8080"; };
serverAliases = [
"walkah.net"
"www.walkah.net"
];
}; };
}; };
}; };