nanachi file serve
This commit is contained in:
parent
c84a5b9f4b
commit
fb3eb1ab6f
@ -6,19 +6,19 @@
|
|||||||
nixosConfigurations = {
|
nixosConfigurations = {
|
||||||
"reg" = nixpkgs.lib.nixosSystem {
|
"reg" = nixpkgs.lib.nixosSystem {
|
||||||
system = "x86_64-linux";
|
system = "x86_64-linux";
|
||||||
modules = [ ./reg/configuration.nix ];
|
modules = [ ./machines/reg/configuration.nix ];
|
||||||
};
|
};
|
||||||
"mitty" = nixpkgs.lib.nixosSystem {
|
"mitty" = nixpkgs.lib.nixosSystem {
|
||||||
system = "x86_64-linux";
|
system = "x86_64-linux";
|
||||||
modules = [ ./mitty/configuration.nix ];
|
modules = [ ./machines/mitty/configuration.nix ];
|
||||||
};
|
};
|
||||||
"nanachi" = nixpkgs.lib.nixosSystem {
|
"nanachi" = nixpkgs.lib.nixosSystem {
|
||||||
system = "x86_64-linux";
|
system = "x86_64-linux";
|
||||||
modules = [ ./nanachi/configuration.nix ];
|
modules = [ ./machines/nanachi/configuration.nix ];
|
||||||
};
|
};
|
||||||
"neetdev" = nixpkgs.lib.nixosSystem {
|
"neetdev" = nixpkgs.lib.nixosSystem {
|
||||||
system = "x86_64-linux";
|
system = "x86_64-linux";
|
||||||
modules = [ ./neet.dev/configuration.nix ];
|
modules = [ ./machines/neet.dev/configuration.nix ];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
@ -21,4 +21,10 @@
|
|||||||
|
|
||||||
security.acme.acceptTerms = true;
|
security.acme.acceptTerms = true;
|
||||||
security.acme.email = "letsencrypt+5@tar.ninja";
|
security.acme.email = "letsencrypt+5@tar.ninja";
|
||||||
|
|
||||||
|
services.nginx.virtualHosts."nanachi.neet.dev" = {
|
||||||
|
enableACME = true;
|
||||||
|
forceSSL = true;
|
||||||
|
root = "/var/www/tmp";
|
||||||
|
};
|
||||||
}
|
}
|
Loading…
x
Reference in New Issue
Block a user