Commits: 2
Add an administrator account for Hans
index 263075b..de5a152 100644
--- a/configuration.nix
+++ b/configuration.nix
@@ -99,6 +99,12 @@
= extraGroups = [ "networkmanager" "wheel" ];
= };
=
+ users.users.hans = {
+ isNormalUser = true;
+ description = "Hans";
+ extraGroups = [ "networkmanager" "wheel" ];
+ };
+
= # Install firefox.
= programs.firefox.enable = true;
=Change the keyboard to US / NL
index de5a152..b23ae0e 100644
--- a/configuration.nix
+++ b/configuration.nix
@@ -57,12 +57,12 @@
=
= # Configure keymap in X11
= services.xserver.xkb = {
- layout = "gb";
- variant = "";
+ layout = "nl";
+ variant = "us";
= };
=
= # Configure console keymap
- console.keyMap = "uk";
+ console.keyMap = "nl";
=
= # Enable CUPS to print documents.
= services.printing.enable = true;