mirror of
https://github.com/JuLi0n21/publicConfig.git
synced 2026-04-19 16:00:08 +00:00
14 lines
224 B
Nix
14 lines
224 B
Nix
{ baseVars,pkgs, ... }:
|
|
|
|
{
|
|
virtualisation.docker.enable = true;
|
|
environment.systemPackages = with pkgs; [
|
|
docker-compose
|
|
];
|
|
|
|
users.users.${baseVars.username} = {
|
|
extraGroups = [
|
|
"docker"
|
|
];
|
|
};
|
|
} |