mirror of
https://github.com/youwen5/nixos.git
synced 2024-11-24 17:53:51 -08:00
feat: add distrobox module
This commit is contained in:
parent
19bc2ec468
commit
28d63a9caf
2 changed files with 10 additions and 0 deletions
|
@ -17,6 +17,7 @@
|
|||
../../modules/linux/audio-prod
|
||||
../../modules/linux/wine
|
||||
../../modules/linux/stylix
|
||||
../../modules/linux/distrobox
|
||||
../../overlays
|
||||
{
|
||||
home-manager.useGlobalPkgs = true;
|
||||
|
|
9
modules/linux/distrobox/default.nix
Normal file
9
modules/linux/distrobox/default.nix
Normal file
|
@ -0,0 +1,9 @@
|
|||
{ pkgs, ... }:
|
||||
{
|
||||
virtualisation.podman = {
|
||||
enable = true;
|
||||
dockerCompat = true;
|
||||
};
|
||||
|
||||
environment.systemPackages = [ pkgs.distrobox ];
|
||||
}
|
Loading…
Reference in a new issue