nixos-config/hosts/configuration_vm.nix

8 lines
177 B
Nix
Raw Normal View History

2021-04-06 03:11:17 +00:00
{ ... }:
{
networking.hostName = "vm";
sconfig.profile = "server";
boot.loader.grub.device = "/dev/vda";
fileSystems."/" = { device = "/dev/vda1"; fsType = "ext4"; };
}