13 lines
191 B
Nix
13 lines
191 B
Nix
{
|
|
inputs,
|
|
config,
|
|
pkgs,
|
|
lib,
|
|
...
|
|
}: {
|
|
virtualisation.docker = {
|
|
enable = true;
|
|
autoPrune.enable = true;
|
|
};
|
|
users.users.${config.host.user}.extraGroups = ["docker"];
|
|
}
|