diff --git a/configuration.nix b/configuration.nix index ca84b1c..878e4a3 100644 --- a/configuration.nix +++ b/configuration.nix @@ -109,11 +109,16 @@ users.users.snow = { isNormalUser = true; description = "snow"; - extraGroups = [ "networkmanager" "wheel" ]; + extraGroups = [ "networkmanager" "wheel" "docker" ]; packages = with pkgs; [ ]; }; + virtualisation.docker.rootless = { + enable = true; + setSocketVariable = true; + }; + # Allow unfree packages nixpkgs.config.allowUnfree = true;