mirror of
https://github.com/aviallon/nixos-lib.git
synced 2026-04-05 17:27:50 +00:00
fix(lint): nixfmt the whole tree
This commit is contained in:
parent
643b136863
commit
bf219a30c2
69 changed files with 2605 additions and 1726 deletions
|
|
@ -1,10 +1,18 @@
|
|||
{config, pkgs, lib, ...}:
|
||||
{
|
||||
config,
|
||||
pkgs,
|
||||
lib,
|
||||
...
|
||||
}:
|
||||
with lib;
|
||||
let
|
||||
cfg = config.aviallon.security.tpm;
|
||||
in {
|
||||
in
|
||||
{
|
||||
options.aviallon.security.tpm = {
|
||||
enable = (mkEnableOption "TPM") // { default = true; };
|
||||
enable = (mkEnableOption "TPM") // {
|
||||
default = true;
|
||||
};
|
||||
tpm1_2.enable = mkEnableOption "TPM 1.2 support";
|
||||
};
|
||||
config = mkIf cfg.enable {
|
||||
|
|
@ -12,18 +20,20 @@ in {
|
|||
enable = true;
|
||||
tctiEnvironment.enable = true;
|
||||
pkcs11.enable = true;
|
||||
};
|
||||
};
|
||||
|
||||
environment.systemPackages = [
|
||||
pkgs.tpm2-tools
|
||||
] ++ optional cfg.tpm1_2.enable pkgs.tpm-tools;
|
||||
]
|
||||
++ optional cfg.tpm1_2.enable pkgs.tpm-tools;
|
||||
|
||||
services.tcsd = mkIf cfg.tpm1_2.enable {
|
||||
enable = true;
|
||||
};
|
||||
|
||||
boot.initrd.availableKernelModules = [
|
||||
"tpm_tis" "tpm_crb"
|
||||
"tpm_tis"
|
||||
"tpm_crb"
|
||||
];
|
||||
};
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue