python312Packages.zodbpickle: switch to pypa builder and enable tests
[NixPkgs.git] / nixos / modules / programs / sedutil.nix
blob978aaa5c82d5a9be259f3bade7fd5ec23c5ca8f5
1 { config, lib, pkgs, ... }:
3 let
4   cfg = config.programs.sedutil;
6 in {
7   options.programs.sedutil.enable = lib.mkEnableOption "sedutil, to manage self encrypting drives that conform to the Trusted Computing Group OPAL 2.0 SSC specification";
9   config = lib.mkIf cfg.enable {
10     boot.kernelParams = [
11       "libata.allow_tpm=1"
12     ];
14     environment.systemPackages = with pkgs; [ sedutil ];
15   };