22 lines
458 B
Nix
22 lines
458 B
Nix
{ ... }:
|
|
{
|
|
frogeye = {
|
|
desktop = {
|
|
xorg = true;
|
|
};
|
|
dev = {
|
|
docker = true;
|
|
};
|
|
extra = true;
|
|
gaming = true;
|
|
storageSize = "big";
|
|
};
|
|
|
|
# Shenanigans
|
|
# nixpkgs.config.allowUnfree = true;
|
|
# virtualisation.virtualbox.host.enable = true;
|
|
# virtualisation.virtualbox.host.enableExtensionPack = true;
|
|
# users.extraGroups.vboxusers.members = [ "geoffrey" ];
|
|
# TODO Convert Windows VM from virtualbox to libvirt
|
|
}
|