The Obsessive World of 78 Collecting(Book review on discogs.com)
discogs.com1 pointsby bitsig0 comments
> get_nix_version(){
> # shellcheck disable=SC2046
> extract_nix_version $(nix --version)
> }
You might do something like: get_nix_version(){
local IFS=' '
extract_nix_version $(nix --version)
}
if you want set "IFS=$'\n'" globally, and still be able split on space "locally".
Example: Put this expression(using lockPref to hardcode the config values) in environment.systemPackages(assuming "with pkgs"):