This commit is contained in:
zoe 2023-06-08 17:30:15 +02:00
parent be6f78b276
commit 83fef9dcde
2 changed files with 10 additions and 2 deletions

View File

@ -186,6 +186,7 @@
system.stateVersion = "22.05"; # Did you read the comment?
virtualisation.libvirtd.enable = true;
virtualisation.virtualbox.host.enable = true;
programs.dconf.enable = true;
# vars

View File

@ -22,7 +22,14 @@ in {
shell = pkgs.fish;
isNormalUser = true;
description = "zoe";
extraGroups = [ "networkmanager" "wheel" "libvirtd" "dialout" "adbusers" ];
extraGroups = [
"networkmanager"
"wheel"
"libvirtd"
"dialout"
"adbusers"
"user-with-access-to-virtualbox"
];
packages = with pkgs; [
# internet
firefox
@ -160,7 +167,7 @@ in {
go
gopls
delve
## python
(python311.withPackages my-python-packages)
python39