nix/modules/nixos/daniel.nix

37 lines
737 B
Nix
Raw Normal View History

2024-01-04 22:24:18 -06:00
{
2024-01-04 17:20:02 -06:00
home-manager = {
users.daniel = {
accounts.email.accounts = {
primary = {
2024-01-04 22:15:55 -06:00
primary = true;
2024-01-04 17:20:02 -06:00
address = "daniel@lyte.dev";
};
legacy = {
address = "wraithx2@gmail.com";
};
io = {
# TODO: finalize deprecation
address = "daniel@lytedev.io";
};
# TODO: may need to use a sops secret? put in another module?
# work = {
# address = "REDACTED";
# };
};
home = {
username = "daniel";
homeDirectory = "/home/daniel/.home";
};
2024-02-16 14:58:33 -06:00
imports = [
./common.nix
./gnome.nix
./senpai.nix
./iex.nix
./cargo.nix
2024-01-04 17:20:02 -06:00
];
};
};
}