diff options
author | Soispha <soispha@vhack.eu> | 2024-03-23 20:46:00 +0100 |
---|---|---|
committer | Soispha <soispha@vhack.eu> | 2024-03-23 20:46:00 +0100 |
commit | c8550daa6cce2ead00c2981f90b363b7a0928d1e (patch) | |
tree | 9d179eb7b5dc07861c2e22112ec238079baeecaa | |
parent | fix(hm/conf/yambar/scripts/mpd): Put a separator between title and time (diff) | |
download | nixos-config-c8550daa6cce2ead00c2981f90b363b7a0928d1e.tar.gz nixos-config-c8550daa6cce2ead00c2981f90b363b7a0928d1e.zip |
fix(sys/git_revision): Use long git rev
Diffstat (limited to '')
-rw-r--r-- | sys/git_revision/default.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/git_revision/default.nix b/sys/git_revision/default.nix index d9388bfa..c0a8bf72 100644 --- a/sys/git_revision/default.nix +++ b/sys/git_revision/default.nix @@ -1,6 +1,6 @@ {self, ...}: { environment.etc.nixos_git_rev = { - text = builtins.toString (self.shortRev + text = builtins.toString (self.longRev or self.dirtyShortRev or self.lastModified or "unknown"); |