feat: fix virtualisation path
This commit is contained in:
parent
47ac35bed4
commit
114d5dc446
3 changed files with 2 additions and 2 deletions
virtualisation
16
virtualisation/docker.nix
Normal file
16
virtualisation/docker.nix
Normal 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";
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue