add testbox

This commit is contained in:
Sean Buckley 2022-12-17 18:36:42 -05:00
parent 4d987c3eb1
commit ebcbf88be7
2 changed files with 12 additions and 0 deletions

View file

@ -16,4 +16,5 @@ builtins.mapAttrs
hp = "x86_64-linux";
lenny = "x86_64-linux";
levi = "x86_64-linux";
testbox = "x86_64-linux";
}

11
hosts/testbox/default.nix Normal file
View file

@ -0,0 +1,11 @@
{ config, lib, modulesPath, pkgs, ... }:
{
sconfig.gnome = true;
sconfig.profile = "desktop";
services.getty.autologinUser = "root";
virtualisation.memorySize = 4096;
imports = [
(modulesPath + "/virtualisation/qemu-vm.nix")
];
}