From cc42771ee4f18e2ec77bee6660f8a3b6afe38694 Mon Sep 17 00:00:00 2001 From: Infinidoge Date: Thu, 16 Sep 2021 00:23:49 -0400 Subject: [PATCH] fix: password-store settings need to be strings --- users/profiles/pass.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/users/profiles/pass.nix b/users/profiles/pass.nix index 25b8390..61e4d4f 100644 --- a/users/profiles/pass.nix +++ b/users/profiles/pass.nix @@ -5,8 +5,8 @@ settings = { PASSWORD_STORE_DIR = "${config.xdg.dataHome}/password-store"; PASSWORD_STORE_KEY = "2C0BB53DFA3BB79F64B0ADCAAA0E1F926FAF03C0"; # Named "Infinidoge (Master Password)" - PASSWORD_STORE_GENERATED_LENGTH = 20; - PASSWORD_STORE_CLIP_TIME = 60; + PASSWORD_STORE_GENERATED_LENGTH = "20"; + PASSWORD_STORE_CLIP_TIME = "60"; }; };