diff options
author | seth <getchoo@tuta.io> | 2023-07-26 17:10:07 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-26 17:10:07 -0400 |
commit | 928e18b66dbee8ea4b245416206a9e73427ce0f1 (patch) | |
tree | 1559e9e8f7480cca1cb52aee797f40c2c2278250 /nix/default.nix | |
parent | d960effb994ba421c502d8d5e0a1bb4d46efd9a3 (diff) | |
parent | f7ffbcca6c5490e24ee74486cfc6698a38512561 (diff) | |
download | PrismLauncher-928e18b66dbee8ea4b245416206a9e73427ce0f1.tar.gz PrismLauncher-928e18b66dbee8ea4b245416206a9e73427ce0f1.tar.bz2 PrismLauncher-928e18b66dbee8ea4b245416206a9e73427ce0f1.zip |
Merge pull request #1446 from getchoo/nix-fixes
disable darwin in flake + cleanup garnix.yaml + fix markdownlint warnings
Diffstat (limited to 'nix/default.nix')
-rw-r--r-- | nix/default.nix | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/nix/default.nix b/nix/default.nix index 7bad1440..47172927 100644 --- a/nix/default.nix +++ b/nix/default.nix @@ -24,9 +24,9 @@ # Supported systems. systems = [ "x86_64-linux" - "x86_64-darwin" "aarch64-linux" - # Disabled due to qtbase being currently broken for "aarch64-darwin." + # Disabled due to our packages not supporting darwin yet. + # "x86_64-darwin" # "aarch64-darwin" ]; } |