mirror of
https://github.com/Noratrieb/nixos.git
synced 2026-01-14 19:55:08 +01:00
enable the box
This commit is contained in:
parent
8ac9e86f9a
commit
579a40cfec
1 changed files with 32 additions and 15 deletions
|
|
@ -132,7 +132,8 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
# 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 = {
|
||||||
|
users = {
|
||||||
nils = {
|
nils = {
|
||||||
isNormalUser = true;
|
isNormalUser = true;
|
||||||
openssh.authorizedKeys.keys = [
|
openssh.authorizedKeys.keys = [
|
||||||
|
|
@ -149,6 +150,12 @@
|
||||||
shell = pkgs.fish;
|
shell = pkgs.fish;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
extraGroups = {
|
||||||
|
vboxusers = {
|
||||||
|
members = [ "nils" ];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
# SSH Server, maybe enable at some point
|
# SSH Server, maybe enable at some point
|
||||||
services.openssh = {
|
services.openssh = {
|
||||||
|
|
@ -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 = [ ... ];
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue