From de4035c51faccf30c07e9d076738cd595971dc54 Mon Sep 17 00:00:00 2001 From: Alejandro Soto Date: Sat, 7 Jan 2023 17:15:10 -0600 Subject: env/users: implement mailbox host --- env/users/default.nix | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'env/users/default.nix') diff --git a/env/users/default.nix b/env/users/default.nix index 60ee8d8..fed8906 100644 --- a/env/users/default.nix +++ b/env/users/default.nix @@ -1,5 +1,9 @@ { lib, ... }: with lib; { + imports = [ + ./mailbox.nix + ]; + options.local.users = with types; mkOption { default = { }; @@ -17,6 +21,11 @@ with lib; { type = listOf str; default = [ ]; }; + + hardAliases = mkOption { + type = listOf str; + default = [ ]; + }; }; }); }; -- cgit v1.2.3