1
Fork 0
satellite/modules/applications/docker.nix

8 lines
152 B
Nix
Raw Normal View History

2020-10-30 12:37:31 +01:00
{ pkgs, ... }: {
virtualisation.docker.enable = true;
home-manager.users.adrielus.home.packages = with pkgs; [
docker
docker-compose
];
}