cli: allow build with unknown nixos revision

This commit is contained in:
Sean Buckley 2021-05-26 00:56:05 -04:00
parent 9105bd132a
commit d3064fa14a

View file

@ -42,7 +42,7 @@ in
(writeShellScriptBin "nix-roots" "nix-store --gc --print-roots | grep -v ^/proc/") (writeShellScriptBin "nix-roots" "nix-store --gc --print-roots | grep -v ^/proc/")
(writeShellScriptBin "ns" '' (writeShellScriptBin "ns" ''
exec nix shell "github:NixOS/nixpkgs/${config.system.nixos.revision}#$@" exec nix shell "github:NixOS/nixpkgs/${toString config.system.nixos.revision}#$@"
'') '')
(writeShellScriptBin "pip_install" '' (writeShellScriptBin "pip_install" ''
@ -60,7 +60,7 @@ in
echo echo
echo "NixOS ${config.system.nixos.release} (${config.system.defaultChannel})" echo "NixOS ${config.system.nixos.release} (${config.system.defaultChannel})"
echo echo
echo "${config.system.nixos.revision} current local" echo "${toString config.system.nixos.revision} current local"
echo "$(curl --silent -L ${config.system.defaultChannel}/git-revision) latest available" echo "$(curl --silent -L ${config.system.defaultChannel}/git-revision) latest available"
echo echo
'') '')