18 lines
256 B
Nix
18 lines
256 B
Nix
|
{ ... }:
|
||
|
{
|
||
|
boot.loader.grub = {
|
||
|
enable = true;
|
||
|
device = "/dev/vda";
|
||
|
};
|
||
|
|
||
|
networking = {
|
||
|
hostName = "nextcloud";
|
||
|
firewall = {
|
||
|
enable = true;
|
||
|
allowedTCPPorts = [ 80 443 8443 ];
|
||
|
};
|
||
|
};
|
||
|
|
||
|
system.stateVersion = "23.05";
|
||
|
}
|