2024-01-20 14:03:54 -08:00
|
|
|
{ config, pkgs, ... }:
|
2024-03-16 11:12:22 -07:00
|
|
|
let rootPath = ./.; in
|
2024-01-20 14:03:54 -08:00
|
|
|
{
|
2024-03-16 11:12:22 -07:00
|
|
|
home.packages = with pkgs; [
|
|
|
|
|
xonsh
|
|
|
|
|
];
|
|
|
|
|
home.sessionVariables = {
|
|
|
|
|
PROMPT = "τ ";
|
|
|
|
|
RIGHT_PROMPT = "{YELLOW}{gitstatus: {} }{BLUE}{short_cwd}{DEFAULT}";
|
|
|
|
|
VI_MODE = 1;
|
2024-01-20 14:03:54 -08:00
|
|
|
};
|
2024-03-16 11:12:22 -07:00
|
|
|
xdg.configFile."xonshrc" = {
|
|
|
|
|
source = rootPath + "/rc.xsh";
|
|
|
|
|
target = "xonsh/rc.xsh";
|
|
|
|
|
};
|
|
|
|
|
|
2024-01-20 14:03:54 -08:00
|
|
|
}
|