nix/nixos/hosts/framework-server/podman.nix
iFargle ad41d6c2e2
Some checks failed
build-linode-img / build-linode-img (push) Failing after 42s
Typo
2023-12-18 19:26:59 +09:00

25 lines
No EOL
661 B
Nix

{ inputs, pkgs, ... }: {
# Need to increase this because the number of
# containers I have drive the defaults over the max
boot.kernel.sysctl = {
"fs.inotify.max_user_watches" = 10485760;
"fs.inotify.max_user_instances" = 1024;
};
virtualisation.podman = {
enable = true;
dockerSocket.enable = true;
dockerCompat = true;
autoPrune = {
enable = true;
dates = "weekly";
flags = [ "--all" ];
};
};
environment.systemPackages = with pkgs; [
podman-compose
podman-tui
inputs.compose2nix.packages.x86_64-linux.default
];
}