diff options
| author | TheKodeToad <TheKodeToad@proton.me> | 2023-07-31 14:40:27 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-07-31 14:40:27 +0100 |
| commit | b572f75dbaad61cf305f1fd4f60ba94d74bfa3fa (patch) | |
| tree | 4e1ad65d3e51a1c3a1d7cae3a203fadddb3bbc2f /nix | |
| parent | 719d87de3bb6f65bc63ad518126074fd9f5f6283 (diff) | |
| parent | 9137721e8e5b44f2338a36874a393435cbc6daa3 (diff) | |
| download | PrismLauncher-b572f75dbaad61cf305f1fd4f60ba94d74bfa3fa.tar.gz PrismLauncher-b572f75dbaad61cf305f1fd4f60ba94d74bfa3fa.tar.bz2 PrismLauncher-b572f75dbaad61cf305f1fd4f60ba94d74bfa3fa.zip | |
Merge branch 'PrismLauncher:develop' into icon-indexing
Diffstat (limited to 'nix')
| -rw-r--r-- | nix/NIX.md | 10 | ||||
| -rw-r--r-- | nix/default.nix | 4 |
2 files changed, 10 insertions, 4 deletions
@@ -53,7 +53,8 @@ home.packages = [ pkgs.prismlauncher ]; ### Without flakes-enabled nix -#### Using channels +<details> +<summary>Using channels</summary> ```sh nix-channel --add https://github.com/PrismLauncher/PrismLauncher/archive/master.tar.gz prismlauncher @@ -61,7 +62,10 @@ nix-channel --update prismlauncher nix-env -iA prismlauncher ``` -#### Using the overlay +</details> + +<details> +<summary>Using the overlay</summary> ```nix # In your configuration.nix: @@ -74,6 +78,8 @@ nix-env -iA prismlauncher } ``` +</details> + ## Running ad-hoc If you're on a flakes-enabled nix you can run the launcher in one-line 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" ]; } |
