20 lines
289 B
Nix
20 lines
289 B
Nix
{
|
|
pkgs,
|
|
...
|
|
}:
|
|
{
|
|
virtualisation = {
|
|
# virtualbox.host = {
|
|
# enable = true;
|
|
# enableExtensionPack = true;
|
|
# };
|
|
podman.enable = true;
|
|
};
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
distrobox
|
|
];
|
|
|
|
users.extraGroups.vboxusers.members = [ "eclypse" ];
|
|
}
|