This commit is contained in:
twoneis 2023-12-08 20:21:06 +01:00
parent 8df22c1739
commit f9d612d6ed
3 changed files with 20 additions and 13 deletions

6
modules/virt/default.nix Normal file
View file

@ -0,0 +1,6 @@
{ pkgs, ... }: {
virtualisation.docker.enable = true;
environment.systemPackages = with pkgs; [
distrobox
];
}