vm docker

This commit is contained in:
joygnu 2024-09-16 20:17:59 +02:00
parent 4a997fbd76
commit dd6f163fbb
5 changed files with 5 additions and 5 deletions

View file

@ -6,7 +6,6 @@
./games ./games
./nemo ./nemo
./rofi ./rofi
./vm
./misc ./misc
]; ];
} }

View file

@ -1,10 +1,11 @@
{ {
imports = [ imports = [
./dunst ./vm
./gdm ./gdm
./dunst
./polkit ./polkit
./syncthing ./syncthing
./virt ./docker
./misc ./misc
]; ];
} }

View file

@ -1,5 +1,5 @@
{...}: { {...}: {
virtualisation.docker.rootless.enable = true; virtualisation.docker.rootless.enable = true;
virtualisation.docker.enable = true; virtualisation.docker.enable = true;
virtualisation.waydroid.enable = true; users.users.joy.extraGroups = ["docker"];
} }

View file

@ -2,6 +2,6 @@
users.users.joy = { users.users.joy = {
isNormalUser = true; isNormalUser = true;
description = "joy"; description = "joy";
extraGroups = ["wheel" "docker"]; extraGroups = ["wheel"];
}; };
} }