diff options
author | Soispha <soispha@vhack.eu> | 2023-07-28 19:41:16 +0200 |
---|---|---|
committer | Soispha <soispha@vhack.eu> | 2023-07-28 19:41:16 +0200 |
commit | 8b1da382e3a15f5f7165bef35f0c284cc375aba8 (patch) | |
tree | e8bb7bf4407895e0cad1d876a7523701e7ffc490 | |
parent | Fix(hm/conf/mail): Add all needed arguments to import (diff) | |
download | nixos-config-8b1da382e3a15f5f7165bef35f0c284cc375aba8.tar.gz nixos-config-8b1da382e3a15f5f7165bef35f0c284cc375aba8.zip |
Fix(hm/conf/mail): Correctly import `non_public_accounts`
-rw-r--r-- | home-manager/config/mail/default.nix | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/home-manager/config/mail/default.nix b/home-manager/config/mail/default.nix index f6b2f3a5..f934b68c 100644 --- a/home-manager/config/mail/default.nix +++ b/home-manager/config/mail/default.nix @@ -1,10 +1,11 @@ { config, pkgs, + lib, ... }: let non_public_accounts = import ./non_public_accounts.nix {inherit pkgs;}; - accounts = {inherit non_public_accounts soispha;}; + accounts = lib.recursiveUpdate {inherit soispha;} non_public_accounts; soispha = { address = "soispha@vhack.eu"; |