mirror of
https://github.com/nmasur/dotfiles
synced 2025-01-31 09:52:03 +00:00
21 lines
312 B
Nix
21 lines
312 B
Nix
{
|
|
config,
|
|
lib,
|
|
...
|
|
}:
|
|
|
|
let
|
|
cfg = config.nmasur.profiles.no-mitigations;
|
|
in
|
|
|
|
{
|
|
|
|
options.nmasur.profiles.no-mitigations.enable = lib.mkEnableOption "remove Kernel CPU mitigations";
|
|
|
|
config = lib.mkIf cfg.enable {
|
|
|
|
# WARNING: This is not secure
|
|
boot.kernelParams = [ "mitigations=off" ];
|
|
};
|
|
}
|