Create user module
Alan Pearce alan@alanpearce.eu
Sat, 09 Sep 2017 15:14:27 +0200
2 files changed, 12 insertions(+), 0 deletions(-)
A modules/user.nix
@@ -0,0 +1,11 @@+{ config, pkgs, ... }: + +{ users.extraUsers.alan = { + description = "Alan Pearce"; + isNormalUser = true; + extraGroups = [ "audio" "wheel" "adbusers" "docker" ]; + shell = "/run/current-system/sw/bin/zsh"; + home = "/home/alan"; + uid = 1000; + }; +}
M satoshipad.nix → satoshipad.nix
@@ -21,6 +21,7 @@ ./modules/british-english.nix ./modules/bare-metal.nix ./modules/intel-gpu.nix ./modules/t470s.nix + ./modules/user.nix ]; networking.hostName = "satoshipad";