nixos-config/hosts/vm/default.nix
2021-04-08 11:27:51 -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"; };
}