1
Fork 0
satellite/modules/applications/docker.nix
2020-10-30 13:37:31 +02:00

8 lines
152 B
Nix

{ pkgs, ... }: {
virtualisation.docker.enable = true;
home-manager.users.adrielus.home.packages = with pkgs; [
docker
docker-compose
];
}