22 lines
490 B
Nix
22 lines
490 B
Nix
{ config, pkgs, lib, ... }:
|
|
let rootPath = ./.; in
|
|
{
|
|
options.xonsh = {
|
|
enable = lib.mkEnableOption "Enables xonsh";
|
|
};
|
|
|
|
config = lib.mkIf config.xonsh.enable {
|
|
home.packages = with pkgs; [
|
|
xonsh
|
|
];
|
|
home.sessionVariables = {
|
|
PROMPT = "τ ";
|
|
RIGHT_PROMPT = "{YELLOW}{gitstatus: {} }{BLUE}{short_cwd}{DEFAULT}";
|
|
VI_MODE = 1;
|
|
};
|
|
xdg.configFile."xonshrc" = {
|
|
source = rootPath + "/rc.xsh";
|
|
target = "xonsh/rc.xsh";
|
|
};
|
|
};
|
|
}
|