marleyos/modules/home/base/profile/default.nix

18 lines
352 B
Nix
Raw Normal View History

{config, ...}: {
2024-11-15 21:42:19 -08:00
config.home = {
sessionPath = [
"${config.home.homeDirectory}/.local/bin"
];
sessionVariables = {
HACK = "${config.home.homeDirectory}/hackin";
};
shellAbbrs = {
c = "clear";
2024-11-03 15:00:19 -08:00
e = "${config.home.sessionVariables.EDITOR}";
v = "${config.home.sessionVariables.EDITOR}";
};
};
}