13 lines
203 B
Nix
13 lines
203 B
Nix
{config, pkgs, ...}:
|
|
{
|
|
environment.systemPackages = with pkgs;[
|
|
podman
|
|
docker-compose
|
|
];
|
|
|
|
virtualisation = {
|
|
docker.enable = true;
|
|
};
|
|
users.users.autumn.extraGroups = ["docker"];
|
|
}
|