diff options
author | Azat Bahawi <azat@bahawi.net> | 2024-04-23 11:45:51 +0300 |
---|---|---|
committer | Azat Bahawi <azat@bahawi.net> | 2024-04-23 11:45:51 +0300 |
commit | 4150cebab66454283332fc3564121b303d6c4ed4 (patch) | |
tree | 274ac2a0b6c0cbda7bd1136258aabc1bdb79a80b /nixosConfigurations/manwe/mailserver/default.nix | |
parent | 2024-04-21 (diff) |
2024-04-23
Diffstat (limited to '')
-rw-r--r-- | nixosConfigurations/manwe/mailserver/default.nix | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/nixosConfigurations/manwe/mailserver/default.nix b/nixosConfigurations/manwe/mailserver/default.nix index 822de6f..cc8b41d 100644 --- a/nixosConfigurations/manwe/mailserver/default.nix +++ b/nixosConfigurations/manwe/mailserver/default.nix @@ -6,7 +6,7 @@ }: with lib; { - imports = [ inputs.mailserver.nixosModule ]; + imports = [ inputs.mailserver.nixosModule ] ++ attrValues (modulesIn ./.); ark.directories = with config.mailserver; [ "/var/lib/dovecot" @@ -85,10 +85,6 @@ with lib; inherit port; password = requirePass; }; - - # Just a list of accounts with aliases and hasedPasswords. Not necessarily - # secret, but kept from prying eyes. - loginAccounts = import ./hidden.nix lib; }; services = { |