feat: fix virtualisation path

This commit is contained in:
Felix Schröter 2020-08-15 13:53:15 +02:00
parent 47ac35bed4
commit 114d5dc446
No known key found for this signature in database
GPG key ID: 910ACB9F6BD26F58
3 changed files with 2 additions and 2 deletions
virtualisation

16
virtualisation/docker.nix Normal file
View file

@ -0,0 +1,16 @@
{ config, pkgs, ... }:
{
environment.systemPackages = with pkgs; [
docker-compose
];
virtualisation.docker = {
enable = true;
extraOptions = "--ip 127.0.0.1";
autoPrune = {
enable = true;
dates = "10:00";
};
};
}