20 lines
373 B
Nix
20 lines
373 B
Nix
{ ... }:
|
|
{
|
|
imports = [
|
|
./hardware-configuration.nix
|
|
./disk-config.nix
|
|
../../nixos/server.nix
|
|
./nginx.nix
|
|
./taskd.nix
|
|
];
|
|
|
|
networking.firewall.allowedTCPPorts = [
|
|
80 # HTTP (nginx)
|
|
443 # HTTPS (nginx)
|
|
53589 # Taskserver
|
|
];
|
|
|
|
networking.hostName = "mystra";
|
|
networking.fqdn = "henri-saudubray.fr";
|
|
system.stateVersion = "25.11";
|
|
}
|