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

18 lines
249 B
Nix
Raw Normal View History

2024-11-20 05:46:39 +01:00
{ ... }:
{
boot.loader.grub = {
enable = true;
device = "/dev/vda";
};
networking = {
hostName = "nextcloud";
firewall = {
enable = true;
2024-11-20 05:46:40 +01:00
allowedTCPPorts = [ 8443 ];
2024-11-20 05:46:39 +01:00
};
};
system.stateVersion = "23.05";
}