nixos-config/hosts/testbox/configuration.nix
2024-05-29 00:50:05 -04:00

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")
];
}