Update dependencies

This commit is contained in:
Charlotte Van Petegem 2024-02-02 17:15:48 +01:00
parent cb4583ade6
commit 9be8a7e1c9
No known key found for this signature in database
GPG key ID: 019E764B7184435A
2 changed files with 6 additions and 31 deletions

View file

@ -1,25 +0,0 @@
diff --git a/nixos/modules/services/mail/dovecot.nix b/nixos/modules/services/mail/dovecot.nix
index 8d298de6945bbc..3d3489164ac2f0 100644
--- a/nixos/modules/services/mail/dovecot.nix
+++ b/nixos/modules/services/mail/dovecot.nix
@@ -1,8 +1,8 @@
-{ options, config, lib, pkgs, ... }:
+{ config, lib, pkgs, ... }:
let
- inherit (lib) any attrValues concatMapStringsSep concatStrings
- concatStringsSep flatten imap1 isList literalExpression mapAttrsToList
+ inherit (lib) attrValues concatMapStringsSep concatStrings
+ concatStringsSep flatten imap1 literalExpression mapAttrsToList
mkEnableOption mkIf mkOption mkRemovedOptionModule optional optionalAttrs
optionalString singleton types mkRenamedOptionModule nameValuePair
mapAttrs' listToAttrs filter;
@@ -14,7 +14,7 @@ let
baseDir = "/run/dovecot2";
stateDir = "/var/lib/dovecot";
- sieveScriptSettings = mapAttrs' (to: from: nameValuePair "sieve_${to}" "${stateDir}/sieve/${from}") cfg.sieve.scripts;
+ sieveScriptSettings = mapAttrs' (to: from: nameValuePair "sieve_${to}" "${stateDir}/sieve/${to}") cfg.sieve.scripts;
imapSieveMailboxSettings = listToAttrs (flatten (imap1 (idx: el:
singleton {
name = "imapsieve_mailbox${toString idx}_name";