diff options
author | Franck Cuny <franck@fcuny.net> | 2022-04-03 17:57:11 -0700 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2022-04-03 17:57:11 -0700 |
commit | 98d90ca7ff2d8911169d235fe33e1d01a3c2c852 (patch) | |
tree | b6fec945b23aa01fd252248de1714986f2f8d2b9 /hosts/common/system | |
parent | ncmpcpp: delete configuration (diff) | |
download | world-98d90ca7ff2d8911169d235fe33e1d01a3c2c852.tar.gz |
users: ensure I'm in the docker group
Diffstat (limited to '')
-rw-r--r-- | hosts/common/system/users.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hosts/common/system/users.nix b/hosts/common/system/users.nix index 3b4dfaa..7d847f3 100644 --- a/hosts/common/system/users.nix +++ b/hosts/common/system/users.nix @@ -12,7 +12,7 @@ group = "fcuny"; home = "/home/fcuny"; shell = pkgs.fish; - extraGroups = [ "users" "wheel" ]; + extraGroups = [ "users" "wheel" "docker" ]; hashedPassword = "$6$i.z1brxtb44JAEco$fDD2Izl.zRR9vBCB2VBKPScChGw38EEl7QEiBTJ/EwgP3oSL0X3ZHq0PJ.RtqzBsWTPUjl4F3MKOBMhnaAPr6."; openssh.authorizedKeys.keys = [ |