feat: virtualbox

This commit is contained in:
s-prechtl 2024-10-01 12:34:32 +02:00
parent 2d354922a7
commit 3c8a4f2380
2 changed files with 9 additions and 5 deletions

View file

@ -133,6 +133,7 @@
ripgrep
rustup
spotify
teams
thunderbird
unzip
usbutils
@ -162,11 +163,14 @@
};
};
virtualisation.docker = {
enable = true;
rootless = {
virtualisation = {
virtualbox.host.enable = true;
docker = {
enable = true;
setSocketVariable = true;
rootless = {
enable = true;
setSocketVariable = true;
};
};
};

View file

@ -23,7 +23,7 @@ in {
users.users.${cfg.username} = {
isNormalUser = true;
initialPassword = "12345";
extraGroups = ["docker" "input" "networkmanager" "wheel"];
extraGroups = ["docker" "input" "networkmanager" "wheel" "vboxusers"];
description = "Stefan";
shell = pkgs.zsh;
};