summary refs log tree commit diff
diff options
context:
space:
mode:
authorts468 <ts468@users.noreply.github.com>2015-08-02 23:05:54 +0200
committerts468 <ts468@users.noreply.github.com>2015-08-02 23:05:54 +0200
commit112aafccceab8bf2e340fcc865bb4ba7a02f5f81 (patch)
treec4250856e86937df98d2a462d1cd320325892295
parent372e5a7dcfab16c1c01b1a5dc7a1a906967e652d (diff)
parent6193f5260c6070323500a96d80264332cee14e61 (diff)
downloadnixlib-112aafccceab8bf2e340fcc865bb4ba7a02f5f81.tar
nixlib-112aafccceab8bf2e340fcc865bb4ba7a02f5f81.tar.gz
nixlib-112aafccceab8bf2e340fcc865bb4ba7a02f5f81.tar.bz2
nixlib-112aafccceab8bf2e340fcc865bb4ba7a02f5f81.tar.lz
nixlib-112aafccceab8bf2e340fcc865bb4ba7a02f5f81.tar.xz
nixlib-112aafccceab8bf2e340fcc865bb4ba7a02f5f81.tar.zst
nixlib-112aafccceab8bf2e340fcc865bb4ba7a02f5f81.zip
Merge pull request #9090 from ts468/upstream.tcsd
tcsd module: adjust default value of kernelPCRs
-rw-r--r--nixos/modules/services/hardware/tcsd.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/services/hardware/tcsd.nix b/nixos/modules/services/hardware/tcsd.nix
index ced2d49c1e15..d957b5063d38 100644
--- a/nixos/modules/services/hardware/tcsd.nix
+++ b/nixos/modules/services/hardware/tcsd.nix
@@ -76,7 +76,7 @@ in
       };
 
       kernelPCRs = mkOption {
-        default = "10,11";
+        default = "8,9,10,11,12";
         type = types.string;
         description = "PCR indices used in the TPM for kernel measurements.";
       };