mirror of
https://github.com/tuxdotrs/nixos-config.git
synced 2025-07-07 02:06:34 +05:30
14 lines
197 B
Nix
Executable File
14 lines
197 B
Nix
Executable File
{
|
|
username,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
virtualisation = {
|
|
docker.enable = true;
|
|
};
|
|
|
|
environment.systemPackages = with pkgs; [lazydocker];
|
|
|
|
users.users.${username}.extraGroups = ["docker"];
|
|
}
|