Merge pull request #408 from genebean/new-hetznix01

new hetznix01
This commit is contained in:
Gene Liverman 2024-06-15 13:47:54 -04:00 committed by GitHub
commit 660bba6aea
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 3 additions and 4 deletions

View file

@ -192,7 +192,7 @@
additionalSpecialArgs = {}; additionalSpecialArgs = {};
}; };
hetznix01 = nixosHostConfig { hetznix01 = nixosHostConfig {
system = "aarch64-linux"; system = "x86_64-linux";
hostname = "hetznix01"; hostname = "hetznix01";
username = "gene"; username = "gene";
additionalModules = []; additionalModules = [];

View file

@ -53,9 +53,8 @@ in {
add_header Strict-Transport-Security $hsts_header; add_header Strict-Transport-Security $hsts_header;
''; '';
virtualHosts = { virtualHosts = {
"nue.technicalissues.us" = { "hetznix01.technicalissues.us" = {
default = true; default = true;
serverAliases = [ "hetznix01.technicalissues.us" ];
listen = [ listen = [
{ port = http_port; addr = "0.0.0.0"; } { port = http_port; addr = "0.0.0.0"; }
{ port = https_port; addr = "0.0.0.0"; ssl = true; } { port = https_port; addr = "0.0.0.0"; ssl = true; }

View file

@ -15,5 +15,5 @@
boot.extraModulePackages = [ ]; boot.extraModulePackages = [ ];
nixpkgs.hostPlatform = lib.mkDefault "aarch64-linux"; nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
} }