diff options
author | pacien | 2022-11-13 02:05:56 +0100 |
---|---|---|
committer | pacien | 2022-11-13 02:05:56 +0100 |
commit | 7ac1c8c481fa2bec52ed6094af8e38bcb406b76f (patch) | |
tree | dc27636c5d5f2e0f6767fadef96d98203734c658 | |
parent | 63da076b8e0d31ea25332847612e39a983c6c474 (diff) | |
download | ldgallery-7ac1c8c481fa2bec52ed6094af8e38bcb406b76f.tar.gz |
flake: avoid making a new pkgs instance
-rw-r--r-- | flake.nix | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -27,7 +27,7 @@ | |||
27 | 27 | ||
28 | outputs = { self, nixpkgs, flake-utils, flaky-utils }: | 28 | outputs = { self, nixpkgs, flake-utils, flaky-utils }: |
29 | flake-utils.lib.eachDefaultSystem (system: let | 29 | flake-utils.lib.eachDefaultSystem (system: let |
30 | pkgs = import nixpkgs { inherit system; }; | 30 | pkgs = nixpkgs.legacyPackages.${system}; |
31 | ldgalleryVersion = "2.1"; | 31 | ldgalleryVersion = "2.1"; |
32 | devTools = with pkgs; [ | 32 | devTools = with pkgs; [ |
33 | # generic | 33 | # generic |