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