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