about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorSoispha <soispha@vhack.eu>2023-07-28 19:41:16 +0200
committerSoispha <soispha@vhack.eu>2023-07-28 19:41:16 +0200
commit8b1da382e3a15f5f7165bef35f0c284cc375aba8 (patch)
treee8bb7bf4407895e0cad1d876a7523701e7ffc490
parentFix(hm/conf/mail): Add all needed arguments to import (diff)
downloadnixos-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.nix3
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";