dotfiles/modules/darwin/user.nix

20 lines
435 B
Nix
Raw Normal View History

2022-06-20 03:54:16 +00:00
{ config, pkgs, lib, ... }: {
2022-06-13 12:53:00 +00:00
2022-06-18 21:16:38 +00:00
users.users."${config.user}" = { # macOS user
home = "/Users/${config.user}";
2022-06-13 12:53:00 +00:00
shell = pkgs.zsh; # Default shell
};
2022-06-20 03:54:16 +00:00
home-manager.users.${config.user} = {
accounts.email.accounts.home = {
passwordCommand = lib.mkForce
"${pkgs.age}/bin/age --decrypt --identity /Users/${config.user}/.ssh/id_ed25519 ${
builtins.toString ./mailpass.age
}";
};
};
2022-06-13 12:53:00 +00:00
}