nix-infra/config/hosts/nextcloud/configuration.nix

18 lines
249 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;
2023-08-04 21:59:25 +02:00
allowedTCPPorts = [ 8443 ];
2023-08-03 15:51:21 +02:00
};
};
system.stateVersion = "23.05";
}