nixos-config/hosts/configuration_vm.nix
2021-04-05 23:11:17 -04:00

7 lines
177 B
Nix

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