11 lines
237 B
Nix
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;
|
|
};
|
|
};
|
|
}
|