mirror of https://gitlab.crans.org/nounous/nixos
20 lines
372 B
Nix
20 lines
372 B
Nix
{ ... }:
|
|
|
|
{
|
|
imports = [
|
|
./hardware-configuration.nix
|
|
./networking.nix
|
|
./reverseproxy.nix
|
|
|
|
../../../modules
|
|
../../../modules/services/acme.nix
|
|
../../../modules/services/anubis.nix
|
|
../../../modules/services/nginx.nix
|
|
];
|
|
|
|
networking.hostName = "reverseproxy";
|
|
boot.loader.grub.devices = [ "/dev/sda" ];
|
|
|
|
system.stateVersion = "25.05";
|
|
}
|