feat: introducing my own system_profiles

This commit is contained in:
Ranomier 2025-05-04 18:18:34 +02:00
parent 8191d1be67
commit ad59ee55cc
2 changed files with 31 additions and 0 deletions

View file

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

21
system_profiles/mini.nix Normal file
View file

@ -0,0 +1,21 @@
{
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")
];
}