mirror of
https://github.com/Noratrieb/vps.git
synced 2026-01-14 16:55:00 +01:00
9 lines
325 B
Nix
9 lines
325 B
Nix
# Default settings for Contabo VPS.
|
|
{ ... }: {
|
|
boot.loader.grub.device = "/dev/sda";
|
|
boot.initrd.availableKernelModules = [ "ata_piix" "uhci_hcd" "xen_blkfront" "vmw_pvscsi" ];
|
|
boot.initrd.kernelModules = [ "nvme" ];
|
|
fileSystems."/" = { device = "/dev/sda3"; fsType = "ext4"; };
|
|
|
|
deployment.tags = [ "contabo" ];
|
|
}
|