feat(oci): add podman runtime

This commit is contained in:
514fpv 2024-01-11 13:59:55 +08:00
parent de4e01ee10
commit beff968955
Signed by: koishi
SSH key fingerprint: SHA256:axz0uIzzY+5W19i7QOUuiw5LSqhKfCBKPf3L4xFRxLw

20
global/oci/default.nix Normal file
View file

@ -0,0 +1,20 @@
{ pkgs
, lib
, config
, ... }: with lib; let
cfg = config.global.oci;
in {
options.global.oci = {
enable = mkEnableOption "oci container runtime";
};
config = mkIf cfg.enable {
virtualisation.podman = {
enable = true;
enableNvidia = with config.global.gui; mkDefault (type == "prime" || type == "nvidia");
dockerCompat = true;
};
users.home.persist.directories = [ ".local/share/containers" ];
};
}