diff options
author | Azat Bahawi <azat@bahawi.net> | 2023-07-15 12:45:02 +0300 |
---|---|---|
committer | Azat Bahawi <azat@bahawi.net> | 2023-07-15 12:45:02 +0300 |
commit | a75acfb7ef640c2367d4547b0f479e7acaad9017 (patch) | |
tree | 253afd11564269b1812c96bf3518a8aab9d4597c /modules/common/profiles/email.nix | |
parent | 2023-07-13 (diff) |
2023-07-15
Diffstat (limited to '')
-rw-r--r-- | modules/common/profiles/email.nix | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/modules/common/profiles/email.nix b/modules/common/profiles/email.nix index 9cc12d7..744d656 100644 --- a/modules/common/profiles/email.nix +++ b/modules/common/profiles/email.nix @@ -46,10 +46,16 @@ in { assert (builtins.isInt line); concatStringsSep " " ( [ - "${config.hm.programs.password-store.package}/bin/pass show ${path}" + "${config.hm.programs.password-store.package}/bin/pass" + "show" + path + ] + ++ optionals (line > 0) [ + "|" + "${pkgs.gnused}/bin/sed" + "-e" + "'${toString line}!d'" ] - ++ optional (line > 0) - "| ${pkgs.gnused}/bin/sed -e '${toString line}!d'" ); in rec { shire = mkAccount rec { |