16 lines
432 B
Nix
16 lines
432 B
Nix
{ pkgs, ... }: {
|
|
boot.kernel.sysctl = {
|
|
"fs.inotify.max_user_watches" = 10485760;
|
|
"fs.inotify.max_user_instances" = 1024;
|
|
};
|
|
virtualisation.docker = {
|
|
enable = true;
|
|
enableOnBoot = true;
|
|
autoPrune.enable = true;
|
|
autoPrune.dates = "weekly";
|
|
storageDriver = "btrfs";
|
|
liveRestore = true;
|
|
};
|
|
|
|
environment.systemPackages = with pkgs; [ docker-compose ];
|
|
}
|