mirror of
https://github.com/buckley310/nixos-config.git
synced 2024-11-09 18:47:02 +00:00
add testbox
This commit is contained in:
parent
4d987c3eb1
commit
ebcbf88be7
2 changed files with 12 additions and 0 deletions
|
@ -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
11
hosts/testbox/default.nix
Normal 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")
|
||||
];
|
||||
}
|
Loading…
Reference in a new issue