summaryrefslogtreecommitdiff
path: root/env/users/default.nix
diff options
context:
space:
mode:
authorAlejandro Soto <alejandro@34project.org>2023-01-07 17:15:10 -0600
committerAlejandro Soto <alejandro@34project.org>2023-01-09 05:35:17 -0600
commitde4035c51faccf30c07e9d076738cd595971dc54 (patch)
tree810b55d97996f47d9659c722da5f324000931c58 /env/users/default.nix
parentfd156bcd3028a42b6d6a56dc1956d934bf8ea2c9 (diff)
env/users: implement mailbox host
Diffstat (limited to 'env/users/default.nix')
-rw-r--r--env/users/default.nix9
1 files changed, 9 insertions, 0 deletions
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 = [ ];
+ };
};
});
};