nix/hosts/quiver/kernel.nix
2026-04-08 11:51:33 +10:00

14 lines
209 B
Nix

{ inputs, ... }:
{
imports = [
inputs.bunker.nixosModules.default
];
bunker.kernel = {
enable = true;
cpuArch = "MZEN3";
version = "6.19";
hardened = false;
lto = "none";
};
}