9 lines
192 B
Nix
9 lines
192 B
Nix
{ config, lib, pkgs, ... }:
|
|
{
|
|
virtualisation.podman = {
|
|
enable = true;
|
|
# Rootless containers by default
|
|
# Quadlet files in ~/.config/containers/systemd/ are auto-detected
|
|
};
|
|
}
|