Compare commits

..

No commits in common. "dd6f163fbb91084e1661aa289276e3c2884b7552" and "89db813bdd00f6f06cda6e07df1b99c5e2d97733" have entirely different histories.

6 changed files with 7 additions and 6 deletions

View file

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

View file

@ -100,8 +100,9 @@
libredirect libredirect
search-by-image search-by-image
terms-of-service-didnt-read terms-of-service-didnt-read
istilldontcareaboutcookies
decentraleyes decentraleyes
stylus
istilldontcareaboutcookies
]; ];
settings = { settings = {

View file

@ -1,11 +1,10 @@
{ {
imports = [ imports = [
./vm
./gdm
./dunst ./dunst
./gdm
./polkit ./polkit
./syncthing ./syncthing
./docker ./virt
./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;
users.users.joy.extraGroups = ["docker"]; virtualisation.waydroid.enable = true;
} }

View file

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