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-12-28 00:20:13 -06:00
|
|
|
imports = [
|
2023-12-28 15:27:31 -06:00
|
|
|
./hardware-configuration.nix
|
|
|
|
../../modules/bootstrap.nix
|
2024-03-18 18:27:29 -05:00
|
|
|
../../modules/hosts.nix
|
2023-12-28 15:27:31 -06:00
|
|
|
../../modules/common.nix
|
|
|
|
../../modules/x11.nix
|
|
|
|
../../modules/discord.nix
|
2023-12-28 00:20:13 -06: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-12-20 20:37:40 -06:00
|
|
|
|
|
|
|
system.stateVersion = "23.11";
|
2023-07-07 23:09:54 -05:00
|
|
|
}
|