nix-infra/hosts/nextcloud/configuration.nix

18 lines
256 B
Nix
Raw Normal View History

2023-08-03 15:51:21 +02:00
{ ... }:
{
boot.loader.grub = {
enable = true;
device = "/dev/vda";
};
networking = {
hostName = "nextcloud";
firewall = {
enable = true;
allowedTCPPorts = [ 80 443 8443 ];
};
};
system.stateVersion = "23.05";
}