mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-11-11 10:16:01 +01:00
15 lines
199 B
Bash
15 lines
199 B
Bash
#! @shell@
|
|
|
|
case "$1" in
|
|
-h|--help)
|
|
exec man nixos-version
|
|
exit 1
|
|
;;
|
|
--hash|--revision)
|
|
echo "@nixosRevision@"
|
|
;;
|
|
*)
|
|
echo "@nixosVersion@ (@nixosCodeName@)"
|
|
;;
|
|
esac
|