Add current git revision to i3bar and powerline-go prompt

This commit is contained in:
Lauren Lagarde 2025-08-10 23:00:09 -05:00
parent da88d64ebe
commit c615373955
4 changed files with 13 additions and 5 deletions

View file

@ -115,13 +115,13 @@
"lauren_lagarde" = home-manager.lib.homeManagerConfiguration {
inherit pkgs;
modules = self.homeManagerModules."lauren_lagarde";
extraSpecialArgs = { inherit inputs pkgs-unstable; };
extraSpecialArgs = { inherit self inputs pkgs-unstable; };
};
"lauren_lagarde@ll-latitude-e5591" = home-manager.lib.homeManagerConfiguration {
inherit pkgs;
modules = self.homeManagerModules."lauren_lagarde@ll-latitude-e5591";
extraSpecialArgs = { inherit inputs pkgs-unstable; };
extraSpecialArgs = { inherit self inputs pkgs-unstable; };
};
};

View file

@ -1,4 +1,6 @@
{ ... }: {
{ self, ... }: let
rev = builtins.replaceStrings ["-dirty"] ["*"] (toString (self.shortRev or self.dirtyShortRev or self.lastModified or "unknown"));
in {
programs.bash = {
enable = true;
shellAliases = {
@ -6,6 +8,8 @@
};
bashrcExtra = ''
ssh_with_yubikey () { AGENT_SOCKET=$(ssh $@ gpgconf --list-dirs agent-socket) && ssh -A -R "$AGENT_SOCKET:$(gpgconf --list-dirs agent-socket)" -o "StreamLocalBindUnlink=yes" $@; }
export SYSTEM_GIT_REV=${rev}
'';
};
}

View file

@ -1,4 +1,6 @@
{ pkgs, home-manager, ... }: {
{ self, pkgs, home-manager, ... }: let
rev = builtins.replaceStrings ["-dirty"] ["*"] (toString (self.shortRev or self.dirtyShortRev or self.lastModified or "unknown"));
in {
home.packages = with pkgs; [
# TODO: Why no work?
#nerdfonts
@ -217,7 +219,7 @@
"module/hostname" = {
type = "custom/script";
exec = "echo $(uname -n)";
exec = "echo $(uname -n)#${rev}";
interval = 256;
format = "<label>";

View file

@ -6,6 +6,7 @@
"venv"
"user"
"host"
"shell-var"
"ssh"
"cwd"
"perms"
@ -24,6 +25,7 @@
cwd-mode = "plain";
git-mode = "fancy";
colorize-hostname = true;
shell-var = "SYSTEM_GIT_REV";
};
};
}