nixos-config/hosts/testbox/default.nix

12 lines
247 B
Nix
Raw Normal View History

2022-12-17 23:36:42 +00:00
{ config, lib, modulesPath, pkgs, ... }:
{
sconfig.gnome = true;
sconfig.profile = "desktop";
services.getty.autologinUser = "root";
virtualisation.memorySize = 4096;
imports = [
(modulesPath + "/virtualisation/qemu-vm.nix")
];
}