NixToSee/system_profiles/mini.nix
2025-05-04 18:18:34 +02:00

21 lines
420 B
Nix

{
modulesPath,
...
}: {
imports = [
(modulesPath + "/profiles/minimal.nix")
(modulesPath + "/profiles/perlless.nix")
{
boot.isContainer = true;
boot.kernel.enable = false;
environment.defaultPackages = [];
nixpkgs.overlays = [(self: super: {})];
}
];
disabledModules = [
(modulesPath + "/profiles/all-hardware.nix")
(modulesPath + "/profiles/base.nix")
];
}