Improve detect NixOS version

This commit is contained in:
Izorkin 2022-07-18 19:39:24 +03:00
parent ccd5d9f526
commit de253afcf4
No known key found for this signature in database
GPG key ID: 1436C1B3F3679F09

View file

@ -999,6 +999,13 @@ get_distro() {
*) distro="OS Elbrus $(< /etc/mcst_version)"
esac
elif [[ -f /etc/NIXOS ]]; then
case $distro_shorthand in
on) distro="NixOS $(nixos-version | awk '{print substr($1,0,5),$2}')" ;;
tiny) distro="NixOS" ;;
*) distro="NixOS $(nixos-version)" ;;
esac
elif type -p pveversion >/dev/null; then
case $distro_shorthand in
on|tiny) distro="Proxmox VE" ;;