Files
nixos-haus/modules/common/docker.nix

15 lines
215 B
Nix

{
config,
pkgs,
...
}: {
# Enable with systemctl --user enable --now docker
virtualisation.docker = {
enable = true;
rootless = {
enable = true;
setSocketVariable = true;
};
};
}