2023-10-01 13:56:46 +00:00
|
|
|
flake-inputs:
|
|
|
|
{config, pkgs, lib, ... }: {
|
|
|
|
|
|
|
|
imports = [
|
|
|
|
./hardware-configuration.nix
|
|
|
|
../../roles
|
|
|
|
../../roles/xen_guest.nix
|
|
|
|
./network.nix
|
|
|
|
];
|
|
|
|
|
|
|
|
# System configuration here
|
|
|
|
|
2023-10-01 14:45:43 +00:00
|
|
|
boot.consoleLogLevel = "9";
|
2023-10-01 13:56:46 +00:00
|
|
|
boot.loader.grub.storePath = "/nix/store";
|
|
|
|
boot.loader.grub.copyKernels = false;
|
|
|
|
networking.hostName = "nerf-nixos-testlab";
|
|
|
|
system.stateVersion = "23.11";
|
|
|
|
}
|