nixos-config/hosts/testbox/default.nix
2023-12-21 01:38:32 -05: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")
];
}