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

15 lines
300 B
Nix
Raw Normal View History

2020-10-30 12:37:31 +01:00
{ pkgs, ... }: {
2021-07-18 01:58:38 +02:00
virtualisation.docker = {
enable = true;
liveRestore = false;
extraOptions = ''
--default-address-pool "base=192.168.100.0/20,size=24"
'';
};
2020-10-30 12:37:31 +01:00
home-manager.users.adrielus.home.packages = with pkgs; [
docker
docker-compose
2021-07-18 01:58:38 +02:00
docker-machine
2020-10-30 12:37:31 +01:00
];
}