diff options
Diffstat (limited to 'env/users/default.nix')
| -rw-r--r-- | env/users/default.nix | 9 |
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 = [ ]; + }; }; }); }; |
