2023-12-01 11:58:41 +01:00
|
|
|
{ pkgs, ... }: {
|
2023-12-02 12:11:50 +01:00
|
|
|
boot.kernel.sysctl = {
|
|
|
|
"fs.inotify.max_user_watches" = 10485760;
|
|
|
|
"fs.inotify.max_user_instances" = 1024;
|
|
|
|
};
|
2023-11-25 07:17:29 +01:00
|
|
|
virtualisation.docker = {
|
|
|
|
enable = true;
|
|
|
|
enableOnBoot = true;
|
|
|
|
autoPrune.enable = true;
|
|
|
|
autoPrune.dates = "weekly";
|
|
|
|
storageDriver = "btrfs";
|
|
|
|
liveRestore = true;
|
|
|
|
};
|
2023-12-01 11:58:41 +01:00
|
|
|
|
2023-12-01 12:01:38 +01:00
|
|
|
environment.systemPackages = with pkgs; [ docker-compose ];
|
2023-12-02 12:11:50 +01:00
|
|
|
}
|