Enable docker for desktop config
This commit is contained in:
parent
4354811d85
commit
330ace6c29
|
|
@ -130,6 +130,13 @@
|
||||||
# Waydroid Android Emulation
|
# Waydroid Android Emulation
|
||||||
virtualisation.waydroid.enable = true;
|
virtualisation.waydroid.enable = true;
|
||||||
|
|
||||||
|
# Rootless docker for development
|
||||||
|
virtualisation.docker.rootless = {
|
||||||
|
enable = true;
|
||||||
|
setSocketVariable = true;
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
# List packages installed in system profile. To search, run:
|
# List packages installed in system profile. To search, run:
|
||||||
# $ nix search wget
|
# $ nix search wget
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
|
|
|
||||||
|
|
@ -109,7 +109,7 @@
|
||||||
users.users.cspark = {
|
users.users.cspark = {
|
||||||
isNormalUser = true;
|
isNormalUser = true;
|
||||||
description = "Curt Spark";
|
description = "Curt Spark";
|
||||||
extraGroups = [ "plugdev" "networkmanager" "wheel" "libvirtd" "libvirt" "kvm" "input" ];
|
extraGroups = [ "plugdev" "networkmanager" "wheel" "libvirtd" "libvirt" "kvm" "input" "docker" ];
|
||||||
};
|
};
|
||||||
|
|
||||||
# Allow unfree packages
|
# Allow unfree packages
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue