mirror of
https://codeberg.org/tmayoff/.dotfiles.git
synced 2025-12-06 08:48:34 -05:00
16 lines
250 B
Nix
16 lines
250 B
Nix
{pkgs, ...}: {
|
|
virtualisation.containers.enable = true;
|
|
|
|
virtualisation = {
|
|
podman = {
|
|
enable = true;
|
|
dockerCompat = true;
|
|
};
|
|
};
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
dive
|
|
podman-tui
|
|
podman-compose
|
|
];
|
|
}
|