feat: add distrobox module

This commit is contained in:
Youwen Wu 2024-11-11 14:36:39 -08:00
parent 19bc2ec468
commit 28d63a9caf
Signed by: youwen5
GPG key ID: 865658ED1FE61EC3
2 changed files with 10 additions and 0 deletions

View file

@ -17,6 +17,7 @@
../../modules/linux/audio-prod ../../modules/linux/audio-prod
../../modules/linux/wine ../../modules/linux/wine
../../modules/linux/stylix ../../modules/linux/stylix
../../modules/linux/distrobox
../../overlays ../../overlays
{ {
home-manager.useGlobalPkgs = true; home-manager.useGlobalPkgs = true;

View file

@ -0,0 +1,9 @@
{ pkgs, ... }:
{
virtualisation.podman = {
enable = true;
dockerCompat = true;
};
environment.systemPackages = [ pkgs.distrobox ];
}