summary refs log tree commit diff
path: root/nixos/modules/installer/tools/nixos-version.sh
blob: 51aa2dd823216f7dc6f92fd52aeca3464987ce03 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
#! @shell@

case "$1" in
  --hash|--revision)
    echo "@nixosRevision@"
    ;;
  *)
    echo "@nixosVersion@ (@nixosCodeName@)"
    ;;
esac