nixos-config/hosts/testbox/configuration.nix

13 lines
260 B
Nix
Raw Normal View History

2023-12-21 06:38:32 +00:00
{ modulesPath, ... }:
2022-12-17 23:36:42 +00:00
{
sconfig.gnome = true;
2023-03-27 15:21:48 +00:00
sconfig.desktop.enable = true;
2023-09-04 17:03:46 +00:00
users.users.sean.password = "sean";
system.stateVersion = "99.99";
2022-12-17 23:36:42 +00:00
virtualisation.memorySize = 4096;
imports = [
(modulesPath + "/virtualisation/qemu-vm.nix")
];
}