nixos-config/hosts/testbox/default.nix

13 lines
282 B
Nix
Raw Normal View History

2022-12-17 23:36:42 +00:00
{ config, lib, modulesPath, pkgs, ... }:
{
sconfig.gnome = true;
2023-03-27 15:21:48 +00:00
sconfig.desktop.enable = true;
2022-12-17 23:36:42 +00:00
services.getty.autologinUser = "root";
system.stateVersion = "99.99";
2022-12-17 23:36:42 +00:00
virtualisation.memorySize = 4096;
imports = [
(modulesPath + "/virtualisation/qemu-vm.nix")
];
}