initial testlab config

This commit is contained in:
Dennis Frieberg 2023-10-01 15:56:46 +02:00
parent 554c5c89a8
commit 983391385c
Signed by: nerf
GPG key ID: 42DED0E2D8F04FB6
3 changed files with 66 additions and 0 deletions

View file

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