fix: cleanup!

This commit is contained in:
Ranomier 2025-05-04 20:26:19 +02:00
parent 4880ce65ae
commit bf19849309
7 changed files with 53 additions and 65 deletions

View file

@ -1,10 +1,13 @@
{
lib,
...
}: {
imports = [
./mini.nix
{
boot.isContainer = true;
boot.kernel.enable = false;
boot.isContainer = lib.mkDefault true;
boot.kernel.enable = lib.mkDefault false;
}
];
}