Enable docker for desktop config
This commit is contained in:
parent
4354811d85
commit
330ace6c29
|
|
@ -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; [
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in New Issue