summaryrefslogtreecommitdiff
path: root/env/users/default.nix
diff options
context:
space:
mode:
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 = [ ];
+ };
};
});
};