nixos-config/hosts/bootstrap-vps/configuration.nix

8 lines
181 B
Nix
Raw Normal View History

2021-06-08 01:52:12 +00:00
{ ... }:
{
sconfig.profile = "server";
boot.loader.grub.enable = true;
boot.loader.grub.device = "/dev/vda";
fileSystems."/" = { device = "/dev/vda1"; fsType = "ext4"; };
}