NixToSee/system_profiles/components/container.nix
2025-06-14 21:43:23 +02:00

6 lines
187 B
Nix

# For when to deploy to a container,
# can be used with minify to make things smaller
{lib, ...}: {
boot.isContainer = lib.mkDefault true;
boot.kernel.enable = lib.mkDefault false;
}