Add home manager check #20
This file contains 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
name: Scala CI | |
on: | |
push: | |
branches: | |
- "**" | |
jobs: | |
test-macos: | |
runs-on: macos-12 | |
steps: | |
- name: Install nix | |
uses: cachix/install-nix-action@v27 | |
with: | |
nix_path: nixpkgs=channel:nixos-unstable | |
- name: Install nixpkgs-unstable & home-manager channel + nixfmt | |
run: | | |
nix-channel --add https://nixos.org/channels/nixpkgs-unstable nixpkgs | |
nix-channel --add https://github.com/nix-community/home-manager/archive/master.tar.gz home-manager | |
nix-channel --update | |
nix-env -iA nixfmt-rfc-style -f '<nixpkgs>' | |
nix-shell '<home-manager>' -A install | |
- name: Install nix-darwin | |
run: | | |
sudo rm /etc/nix/nix.conf | |
nix-build https://github.com/LnL7/nix-darwin/archive/master.tar.gz -A installer | |
./result/bin/darwin-installer | |
# - uses: cachix/cachix-action@v14 | |
# with: | |
# name: mycache | |
# # If you chose signing key for write access | |
# signingKey: "${{ secrets.CACHIX_SIGNING_KEY }}" | |
# # If you chose API tokens for write access OR if you have a private cache | |
# authToken: "${{ secrets.CACHIX_AUTH_TOKEN }}" | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Formatting | |
run: | | |
echo this workflow was triggered by ${{github.actor}} | |
find . -name '*.nix' | xargs nixfmt -c | |
- name: Darwin build | |
run: | | |
. /etc/static/bashrc | |
darwin-rebuild build -I ./MacOs/system/darwin-configuration.nix | |
- name: Home-manager build | |
run: | | |
. /etc/static/bashrc | |
home-manager build -I ./MacOs/home/home.nix |