8ac5e011d6
GitOrigin-RevId: 2c3273caa153ee8eb5786bc8141b85b859e7efd7
18 lines
300 B
Nix
18 lines
300 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
let
|
|
cfg = config.programs.sedutil;
|
|
|
|
in {
|
|
options.programs.sedutil.enable = mkEnableOption "sedutil";
|
|
|
|
config = mkIf cfg.enable {
|
|
boot.kernelParams = [
|
|
"libata.allow_tpm=1"
|
|
];
|
|
|
|
environment.systemPackages = with pkgs; [ sedutil ];
|
|
};
|
|
}
|