nix-dotfiles/programs/xonsh/default.nix

18 lines
340 B
Nix
Raw Normal View History

2024-01-20 14:03:54 -08:00
{ config, pkgs, ... }:
let rootPath = ./.; in
2024-01-20 14:03:54 -08: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
};
xdg.configFile."xonshrc" = {
source = rootPath + "/rc.xsh";
target = "xonsh/rc.xsh";
};
2024-01-20 14:03:54 -08:00
}