From b423afb2bbc40296cec80c6c47b1b3c2fdeff6af Mon Sep 17 00:00:00 2001 From: Jack O'Sullivan Date: Sat, 11 Feb 2023 22:07:39 +0000 Subject: [PATCH] nixos/tmproot: Add boltd --- nixos/modules/tmproot.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/nixos/modules/tmproot.nix b/nixos/modules/tmproot.nix index 32528d0..a85dd9f 100644 --- a/nixos/modules/tmproot.nix +++ b/nixos/modules/tmproot.nix @@ -386,6 +386,9 @@ in } ]; }) + (mkIf config.services.hardware.bolt.enable { + my.tmproot.persistence.config.directories = [ "/var/lib/boltd" ]; + }) ])) ]);