chore(cleanup): remove docker service because it is no longer used; move it over to core/

This commit is contained in:
Ahwx 2026-06-10 20:55:19 +02:00
parent f177d6e7d4
commit b99f213661
3 changed files with 14 additions and 22 deletions

View file

@ -1,7 +1,18 @@
{ ... }:
{
username,
pkgs,
lib,
...
}:
{
virtualisation.docker = {
package = lib.mkDefault pkgs.docker_29;
enable = true;
enableOnBoot = false;
# autoPrune.enable = true;
# enableNvidia = true;
};
users.users.${username} = {
extraGroups = [ "docker" ];
};
}