nix/nixos/common/services/podman.nix

27 lines
717 B
Nix
Raw Normal View History

2024-01-31 05:23:52 +01:00
{ inputs, pkgs, system, ... }: {
2023-12-18 11:26:37 +01:00
# 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;
2024-01-13 03:15:04 +01:00
"net.ipv4.ip_unprivileged_port_start" = 25;
2023-12-18 11:26:37 +01:00
};
2023-12-18 11:26:59 +01:00
2023-12-18 11:26:37 +01:00
virtualisation.podman = {
enable = true;
dockerSocket.enable = true;
2023-12-18 11:26:59 +01:00
dockerCompat = true;
2023-12-18 11:26:37 +01:00
autoPrune = {
enable = true;
dates = "weekly";
flags = [ "--all" ];
};
};
environment.systemPackages = with pkgs; [
podman-compose
podman-tui
2024-01-31 05:23:52 +01:00
inputs.compose2nix.packages.${system}.default
2023-12-18 11:26:37 +01:00
];
2023-12-18 14:20:48 +01:00
}