mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 15:11:25 +00:00
19 lines
300 B
Nix
19 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 ];
|
||
|
};
|
||
|
}
|