diff options
author | Vincent Ambo <tazjin@gmail.com> | 2017-10-17T22·58+0200 |
---|---|---|
committer | Vincent Ambo <tazjin@gmail.com> | 2017-10-17T22·58+0200 |
commit | b2585a0bcf45a495d3e69283f9be97e057f457e6 (patch) | |
tree | d633b5a36f173388eaf58c2ce30dd7fb5ac88546 /configuration.nix | |
parent | 0e84a3827373842e28fa7831ad0a2d3f28bba6de (diff) |
feat: Add myself to the 'docker' group
Diffstat (limited to 'configuration.nix')
-rw-r--r-- | configuration.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configuration.nix b/configuration.nix index ca97e3d9039c..a0d06e9554d5 100644 --- a/configuration.nix +++ b/configuration.nix @@ -39,7 +39,7 @@ # Configure user account users.defaultUserShell = pkgs.fish; users.extraUsers.vincent = { - extraGroups = [ "wheel" ]; + extraGroups = [ "wheel" "docker" ]; isNormalUser = true; uid = 1000; shell = pkgs.fish; |