mirror of
https://github.com/buckley310/nixos-config.git
synced 2024-11-09 18:47:02 +00:00
12 lines
247 B
Nix
12 lines
247 B
Nix
|
{ config, lib, modulesPath, pkgs, ... }:
|
||
|
{
|
||
|
sconfig.gnome = true;
|
||
|
sconfig.profile = "desktop";
|
||
|
services.getty.autologinUser = "root";
|
||
|
|
||
|
virtualisation.memorySize = 4096;
|
||
|
imports = [
|
||
|
(modulesPath + "/virtualisation/qemu-vm.nix")
|
||
|
];
|
||
|
}
|