Files
nixy/nixos/docker.nix
T
2026-08-13 13:55:30 +02:00

10 lines
187 B
Nix

{
config,
pkgs,
...
}: {
virtualisation.docker.enable = true;
users.users."${config.var.username}".extraGroups = ["docker"];
environment.systemPackages = [pkgs.lazydocker];
}