nixos-config/modules/podman/default.nix

85 lines
2 KiB
Nix
Raw Permalink Normal View History

2024-02-05 11:46:52 +01:00
{
lib,
pkgs,
config,
...
2022-03-01 22:19:03 +01:00
}:
2024-02-05 11:46:52 +01:00
with lib;
let
cfg = config.eboskma.podman;
podmanInterfaces = if config.networking.nftables.enable then "podman*" else "podman+";
in
{
options.eboskma.podman = {
enable = mkEnableOption "podman";
enableNvidia = mkEnableOption "podman NVidia support";
# enableTcpSocket = mkEnableOption "podman TCP socket";
2024-01-24 17:11:29 +01:00
insecureRegistries = mkOption {
description = "List of insecure registries that don't have a (valid) certificate";
type = types.listOf types.str;
default = [ ];
};
};
2021-11-21 19:07:12 +01:00
config = mkIf cfg.enable {
2024-02-05 11:46:52 +01:00
environment.systemPackages = [
pkgs.podman-compose
pkgs.netavark
];
2021-11-21 19:07:12 +01:00
2023-07-04 20:30:36 +02:00
virtualisation.podman = {
2021-11-21 19:07:12 +01:00
enable = true;
2023-07-04 20:30:36 +02:00
dockerCompat = true;
2022-12-09 10:42:31 +01:00
autoPrune = {
enable = true;
2022-12-09 10:42:31 +01:00
dates = "weekly";
};
2024-01-03 01:15:01 +01:00
defaultNetwork.settings.dns_enabled = true;
2022-10-25 09:40:08 +02:00
};
2022-12-09 10:42:31 +01:00
virtualisation.containers = {
2024-01-24 17:11:29 +01:00
enable = true;
registries = {
2024-01-24 17:11:29 +01:00
insecure = cfg.insecureRegistries;
2023-07-10 13:42:56 +02:00
};
2024-01-24 17:11:29 +01:00
# containersConf.settings = {
# engine = {
# helper_binaries_dir = [
# "${pkgs.podman}/libexec/podman"
# ];
# };
# containers = {
# log_driver = "k8s-file";
# events_logger = "journald";
# };
# };
2021-11-21 19:07:12 +01:00
};
hardware.nvidia-container-toolkit.enable = cfg.enableNvidia;
users.extraUsers.${config.eboskma.var.mainUser}.extraGroups = [ "podman" ];
2022-12-09 10:42:31 +01:00
2023-07-04 20:30:36 +02:00
# Make DNS work in containers
networking.firewall.interfaces.${podmanInterfaces} = {
2023-07-04 20:30:36 +02:00
allowedUDPPorts = [ 53 ];
};
2022-12-09 10:42:31 +01:00
# services.ghostunnel = mkIf cfg.enableTcpSocket {
# enable = true;
# servers."podman-socket" = {
# listen = "0.0.0.0:2376";
# target = "unix:/run/podman/podman.sock";
# allowAll = mkDefault true;
# extraArguments = ''
# --auto-acme-cert=mimir.internal.horus.nu
# --auto-acme-email=erwin@horus.nu
# --auto-acme-ca=https://mimir.internal.horus.nu
# '';
# };
# };
2021-11-21 19:07:12 +01:00
};
}