This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| set -euo pipefail | |
| # uncomment to debug | |
| # set -x | |
| echo "1️⃣. Does catalina know to create the nix directory?" | |
| if ! grep nix /etc/synthetic.conf > /dev/null 2>&1; then | |
| echo "nix missing from /etc/synthetic.conf. Adding it (will request sudo)" | |
| echo "nix" | sudo tee -a /etc/synthetic.conf > /dev/null |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| {-# Language CPP #-} | |
| {-# Language BlockArguments #-} | |
| {-# Language GADTs #-} | |
| {-# Language RankNTypes #-} | |
| {-# Language ViewPatterns #-} | |
| {-# Language TypeApplications #-} | |
| {-# Language BangPatterns #-} | |
| {-# Language TypeOperators #-} | |
| {-# Language TypeFamilyDependencies #-} | |
| {-# Language DataKinds #-} |
OlderNewer