14 lines
214 B
Nix
14 lines
214 B
Nix
{ inputs, ... }:
|
|
{
|
|
imports = [
|
|
inputs.bunker.nixosModules.default
|
|
];
|
|
|
|
bunker.kernel = {
|
|
enable = true;
|
|
version = "7.0";
|
|
# cpuArch = "MZEN3";
|
|
# hardened = false;
|
|
# lto = "none";
|
|
};
|
|
}
|