dot_testing/boxes/virtbox.nix

11 lines
176 B
Nix
Raw Normal View History

{ lib, config, pkgs, ...}:
2023-07-09 17:21:27 -05:00
{
boot.loader.grub.enable = true;
boot.loader.grub.device = "/dev/vda";
networking.hostName = "virtbox";
2023-12-20 20:37:40 -06:00
system.stateVersion = "23.11";
}