nixConfig/nixos/machines/nerf-nixos-testlab/configuration.nix
2023-10-01 16:45:43 +02:00

18 lines
374 B
Nix

flake-inputs:
{config, pkgs, lib, ... }: {
imports = [
./hardware-configuration.nix
../../roles
../../roles/xen_guest.nix
./network.nix
];
# System configuration here
boot.consoleLogLevel = "9";
boot.loader.grub.storePath = "/nix/store";
boot.loader.grub.copyKernels = false;
networking.hostName = "nerf-nixos-testlab";
system.stateVersion = "23.11";
}