Desktop/distrobox: enable

This commit is contained in:
Toast 2025-12-16 00:15:17 +01:00
parent 15149a7968
commit e8af512370
2 changed files with 12 additions and 0 deletions

View file

@ -10,5 +10,6 @@
./mpv.nix
./sysdvr-qt.nix
./spotify.nix
./distrobox.nix
];
}

View file

@ -0,0 +1,11 @@
{...}: {
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;
};
};
}