mirror of
https://github.com/buckley310/nixos-config.git
synced 2024-11-09 18:47:02 +00:00
12 lines
260 B
Nix
12 lines
260 B
Nix
{ modulesPath, ... }:
|
|
{
|
|
sconfig.gnome = true;
|
|
sconfig.desktop.enable = true;
|
|
users.users.sean.password = "sean";
|
|
system.stateVersion = "99.99";
|
|
|
|
virtualisation.memorySize = 4096;
|
|
imports = [
|
|
(modulesPath + "/virtualisation/qemu-vm.nix")
|
|
];
|
|
}
|