mirror of
https://github.com/kmein/niveum
synced 2026-03-19 19:41:08 +01:00
8 lines
147 B
Nix
8 lines
147 B
Nix
|
|
{ lib, ... }:
|
||
|
|
let
|
||
|
|
inherit (lib.sources) commitIdFromGitRepo;
|
||
|
|
in
|
||
|
|
{
|
||
|
|
environment.etc."NIVEUM_VERSION".text = commitIdFromGitRepo <niveum/.git>;
|
||
|
|
}
|