Skip to content

Commit

Permalink
TODO Mac support
Browse files Browse the repository at this point in the history
  • Loading branch information
peterbecich committed Jan 25, 2025
1 parent 82d7bcf commit 1c9ab40
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 3 deletions.
12 changes: 10 additions & 2 deletions .github/workflows/nix-flake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,16 @@ on:
pull_request:

jobs:
check:
runs-on: ubuntu-latest
nix:
strategy:
fail-fast: true
matrix:
os:
- ubuntu-latest
- ubuntu-24.04-arm
# - macos-latest
name: Nix on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: DeterminateSystems/nix-installer-action@main
Expand Down
8 changes: 7 additions & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,13 @@
}
//
(
flake-utils.lib.eachSystem [ "x86_64-linux" ] (system:
flake-utils.lib.eachSystem
[ "x86_64-linux"
# "x86_64-darwin"
"aarch64-linux"
# "aarch64-darwin"
]
(system:
let
pkgs = import nixpkgs {
inherit system;
Expand Down

0 comments on commit 1c9ab40

Please sign in to comment.