mirror of https://gitlab.crans.org/nounous/nixos
18 lines
314 B
Nix
18 lines
314 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
imports = [
|
|
./hardware-configuration.nix
|
|
|
|
./reverseproxy.nix
|
|
];
|
|
|
|
networking.hostName = "reverseproxy";
|
|
boot.loader.grub.devices = [ "/dev/sda" ];
|
|
|
|
users.users."nginx".home = "/var/lib/nginx";
|
|
users.users."anubis".extraGroups = [ "nginx" ];
|
|
|
|
system.stateVersion = "25.05";
|
|
}
|