enable the box

This commit is contained in:
nora 2023-06-20 21:38:55 +02:00
parent 8ac9e86f9a
commit 579a40cfec

View file

@ -132,21 +132,28 @@
};
# TODO: Configure your system-wide user settings (groups, etc), add more users as needed.
users.users = {
nils = {
isNormalUser = true;
openssh.authorizedKeys.keys = [
# TODO: Add your SSH public key(s) here, if you plan on using SSH to connect
];
extraGroups = [ "wheel" "networkmanager" "audio" ];
# TODO: This is mostly temporary until home-manager works nicely
packages = with pkgs; [
firefox
vscode
minecraft
home-manager
];
shell = pkgs.fish;
users = {
users = {
nils = {
isNormalUser = true;
openssh.authorizedKeys.keys = [
# TODO: Add your SSH public key(s) here, if you plan on using SSH to connect
];
extraGroups = [ "wheel" "networkmanager" "audio" ];
# TODO: This is mostly temporary until home-manager works nicely
packages = with pkgs; [
firefox
vscode
minecraft
home-manager
];
shell = pkgs.fish;
};
};
extraGroups = {
vboxusers = {
members = [ "nils" ];
};
};
};
@ -196,6 +203,16 @@
programs.java.enable = true;
virtualisation = {
virtualbox = {
host = {
enable = true;
enableExtensionPack = true;
};
};
};
# Open ports in the firewall.
# networking.firewall.allowedTCPPorts = [ ... ];
# networking.firewall.allowedUDPPorts = [ ... ];