nix-stuff/roles/desktop/programs/distrobox.nix
2025-12-19 00:52:35 +01:00

11 lines
237 B
Nix

{...}: {
virtualisation.podman = {
# Due to limitations with home-manager, podman has to be available system wide
enable = true;
};
home-manager.users.toast = {
programs.distrobox = {
enable = true;
};
};
}