dot_testing/boxes/virtbox.nix

13 lines
181 B
Nix
Raw Normal View History

{ lib, config, pkgs, ...}:
2023-07-09 17:21:27 -05:00
{
imports = [
../desktop.nix
];
boot.loader.grub.enable = true;
boot.loader.grub.device = "/dev/vda";
networking.hostName = "virtbox";
}