21 lines
420 B
Nix
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")
|
|
];
|
|
}
|