diff options
author | Gregor Kleen <gkleen@yggdrasil.li> | 2015-07-03 20:36:51 +0200 |
---|---|---|
committer | Gregor Kleen <gkleen@yggdrasil.li> | 2015-07-03 20:36:51 +0200 |
commit | becb65b0cd99ed8d338160fa5f5d3b79a458f42a (patch) | |
tree | b1c326290c53be54cbc8d1a0088672d51babc607 /users | |
parent | bb56572f19e9150276d566e60788ce1df7da795f (diff) | |
download | nixos-becb65b0cd99ed8d338160fa5f5d3b79a458f42a.tar nixos-becb65b0cd99ed8d338160fa5f5d3b79a458f42a.tar.gz nixos-becb65b0cd99ed8d338160fa5f5d3b79a458f42a.tar.bz2 nixos-becb65b0cd99ed8d338160fa5f5d3b79a458f42a.tar.xz nixos-becb65b0cd99ed8d338160fa5f5d3b79a458f42a.zip |
cleanup
Diffstat (limited to 'users')
-rw-r--r-- | users/gkleen.nix | 28 |
1 files changed, 13 insertions, 15 deletions
diff --git a/users/gkleen.nix b/users/gkleen.nix index 1e8b62c9..f39b4ff3 100644 --- a/users/gkleen.nix +++ b/users/gkleen.nix | |||
@@ -1,17 +1,15 @@ | |||
1 | { | 1 | { |
2 | users.extraUsers.gkleen = { | 2 | name = "gkleen"; |
3 | name = "gkleen"; | 3 | description = "Gregor Kleen"; |
4 | description = "Gregor Kleen"; | 4 | extraGroups = [ "wheel" "wlan" "lp" "dialout" ]; |
5 | extraGroups = [ "wheel" "wlan" "lp" "dialout" ]; | 5 | group = "users"; |
6 | group = "users"; | 6 | uid = 1000; |
7 | uid = 1000; | 7 | createHome = true; |
8 | createHome = true; | 8 | home = "/home/gkleen"; |
9 | home = "/home/gkleen"; | 9 | shell = "/run/current-system/sw/bin/zsh"; |
10 | shell = "/run/current-system/sw/bin/zsh"; | 10 | isNormalUser = true; |
11 | isNormalUser = true; | 11 | openssh.authorizedKeys.keyFiles = [ |
12 | openssh.authorizedKeys.keyFiles = [ | 12 | keys/gkleen-skadhi.pub |
13 | keys/gkleen-skadhi.pub | 13 | ]; |
14 | ]; | 14 | hashedPassword = "$6$fJbC4zdY$fOdHMAfIZldfE1oYcLN0WflJpD1J4tXjCP21QfjP6R4nVcbYI.bb1AjZftcJtpHvBA/tC5pJXYoaxTRFvwxvA/"; |
15 | hashedPassword = "$6$fJbC4zdY$fOdHMAfIZldfE1oYcLN0WflJpD1J4tXjCP21QfjP6R4nVcbYI.bb1AjZftcJtpHvBA/tC5pJXYoaxTRFvwxvA/"; | ||
16 | }; | ||
17 | } | 15 | } |