nixos-config/hosts/bootstrap-vps/configuration.nix
2021-06-07 21:52:12 -04:00

7 lines
181 B
Nix

{ ... }:
{
sconfig.profile = "server";
boot.loader.grub.enable = true;
boot.loader.grub.device = "/dev/vda";
fileSystems."/" = { device = "/dev/vda1"; fsType = "ext4"; };
}