dot_testing/boxes/virtbox/default.nix

19 lines
346 B
Nix
Raw Normal View History

{ lib, config, pkgs, ...}:
2023-07-09 17:21:27 -05:00
{
2023-12-28 00:20:13 -06:00
imports = [
2023-12-28 15:27:31 -06:00
./hardware-configuration.nix
../../modules/bootstrap.nix
../../modules/common.nix
../../modules/x11.nix
../../modules/discord.nix
2023-12-28 00:20:13 -06: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";
}