From b2585a0bcf45a495d3e69283f9be97e057f457e6 Mon Sep 17 00:00:00 2001 From: Vincent Ambo Date: Wed, 18 Oct 2017 00:58:03 +0200 Subject: [PATCH] feat: Add myself to the 'docker' group --- configuration.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configuration.nix b/configuration.nix index ca97e3d90..a0d06e955 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;