diff --git a/configurations/desktop/configuration.nix b/configurations/desktop/configuration.nix index ec70d085..3012232d 100644 --- a/configurations/desktop/configuration.nix +++ b/configurations/desktop/configuration.nix @@ -130,6 +130,13 @@ # Waydroid Android Emulation virtualisation.waydroid.enable = true; + # Rootless docker for development + virtualisation.docker.rootless = { + enable = true; + setSocketVariable = true; + }; + + # List packages installed in system profile. To search, run: # $ nix search wget environment.systemPackages = with pkgs; [ diff --git a/global.nix b/global.nix index 4c72f50d..3796304d 100644 --- a/global.nix +++ b/global.nix @@ -109,7 +109,7 @@ users.users.cspark = { isNormalUser = true; description = "Curt Spark"; - extraGroups = [ "plugdev" "networkmanager" "wheel" "libvirtd" "libvirt" "kvm" "input" ]; + extraGroups = [ "plugdev" "networkmanager" "wheel" "libvirtd" "libvirt" "kvm" "input" "docker" ]; }; # Allow unfree packages