2025-01-11 21:20:24 -08:00
|
|
|
{config, ...}: {
|
2024-11-15 21:42:19 -08:00
|
|
|
config.home = {
|
2024-11-03 14:50:02 -08:00
|
|
|
sessionPath = [
|
|
|
|
"${config.home.homeDirectory}/.local/bin"
|
|
|
|
];
|
|
|
|
|
2025-01-11 21:20:24 -08:00
|
|
|
sessionVariables = {
|
2024-11-03 14:50:02 -08:00
|
|
|
HACK = "${config.home.homeDirectory}/hackin";
|
|
|
|
};
|
|
|
|
|
2024-11-03 19:04:54 -08:00
|
|
|
shellAbbrs = {
|
2024-11-03 14:50:02 -08:00
|
|
|
c = "clear";
|
2024-11-03 15:00:19 -08:00
|
|
|
e = "${config.home.sessionVariables.EDITOR}";
|
|
|
|
v = "${config.home.sessionVariables.EDITOR}";
|
2024-11-03 14:50:02 -08:00
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|