17 lines
352 B
Nix
17 lines
352 B
Nix
{config, ...}: {
|
|
config.home = {
|
|
sessionPath = [
|
|
"${config.home.homeDirectory}/.local/bin"
|
|
];
|
|
|
|
sessionVariables = {
|
|
HACK = "${config.home.homeDirectory}/hackin";
|
|
};
|
|
|
|
shellAbbrs = {
|
|
c = "clear";
|
|
e = "${config.home.sessionVariables.EDITOR}";
|
|
v = "${config.home.sessionVariables.EDITOR}";
|
|
};
|
|
};
|
|
}
|