nixos-config/modules/cli/powerline.nix

55 lines
1.3 KiB
Nix
Raw Normal View History

2023-06-05 18:42:32 +00:00
{ config, lib, pkgs, ... }:
2021-10-11 17:08:18 +00:00
let
2023-06-15 14:28:41 +00:00
pl = lib.importJSON ./powerline-chars.json;
2023-06-14 07:25:10 +00:00
theme = {
BoldForeground = true;
CwdFg = 15;
PathBg = 24;
PathFg = 15;
SeparatorFg = 16;
};
2023-06-15 14:28:41 +00:00
customEnd = [{
Content = "$";
Foreground = 15;
Background = 245;
Separator = pl.left_hard_divider;
}];
plconfig = builtins.toFile "powerline-config.json" (builtins.toJSON {
modes.patched.Separator = pl.upper_left_triangle;
});
2023-06-05 18:42:32 +00:00
args = [
2023-06-15 14:28:41 +00:00
"-modules=\${remote:+'user,host,'}nix-shell,git,jobs,cwd,newline,customend"
2023-06-05 18:42:32 +00:00
"-git-assume-unchanged-size 0"
2023-06-14 07:23:52 +00:00
"-theme /etc/powerline-theme.json"
2023-06-05 18:42:32 +00:00
"-path-aliases '~/git=~/git'"
2023-06-16 19:06:26 +00:00
"-jobs $(jobs -pr | wc -l)"
2023-06-05 18:42:32 +00:00
];
2021-10-11 17:08:18 +00:00
in
{
2023-06-15 14:28:41 +00:00
environment.systemPackages = [
pkgs.powerline-go
(pkgs.writeShellScriptBin
"powerline-go-customend"
"echo '${builtins.toJSON customEnd}'")
];
2021-10-11 17:08:18 +00:00
2023-06-14 07:23:52 +00:00
environment.etc."powerline-theme.json".text = builtins.toJSON theme;
2023-06-05 18:42:32 +00:00
programs.bash.interactiveShellInit = ''
2023-06-15 14:28:41 +00:00
install -D ${plconfig} ~/.config/powerline-go/config.json
2023-06-05 18:42:32 +00:00
function _update_ps1() {
local remote=y
[ "$XDG_SESSION_TYPE" = "x11" ] && unset remote
[ "$XDG_SESSION_TYPE" = "wayland" ] && unset remote
PS1="$(powerline-go ${toString args})"
}
[ "$TERM" = "linux" ] || PROMPT_COMMAND="_update_ps1; $PROMPT_COMMAND"
'';
2021-10-11 17:08:18 +00:00
}