21 lines
394 B
Nix
21 lines
394 B
Nix
{ config, pkgs, lib, ... }:
|
|
{
|
|
virtualisation.containers.enable = true;
|
|
|
|
virtualisation.podman = {
|
|
enable = true;
|
|
dockerCompat = false;
|
|
dockerSocket.enable = false;
|
|
defaultNetwork.settings.dns_enabled = true;
|
|
};
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
dive
|
|
virtiofsd
|
|
podman-tui
|
|
podman-compose
|
|
];
|
|
|
|
hardware.nvidia-container-toolkit.enable = true;
|
|
}
|