mirror of
https://github.com/Noratrieb/nixos.git
synced 2026-01-14 11:45:06 +01:00
enable the box
This commit is contained in:
parent
8ac9e86f9a
commit
579a40cfec
1 changed files with 32 additions and 15 deletions
|
|
@ -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 = [ ... ];
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue