Home

ugit @main - refs - log -
-
https://git.jolheiser.com/ugit.git
The code powering this h*ckin' site
tree log patch
update pkgs import Signed-off-by: jolheiser <git@jolheiser.com>
Signature
-----BEGIN SSH SIGNATURE----- U1NIU0lHAAAAAQAAADMAAAALc3NoLWVkMjU1MTkAAAAgBTEvCQk6VqUAdN2RuH6bj1dNkY oOpbPWj+jw4ua1B1cAAAADZ2l0AAAAAAAAAAZzaGE1MTIAAABTAAAAC3NzaC1lZDI1NTE5 AAAAQHa/t9SMewC52ds+aBpAbCbwwSQW00h7zOweBB/Iq+BxIRoeTMCAOBApXJv5LrTAsw NQQo96xl5SfokpVIzcfwU= -----END SSH SIGNATURE-----
jolheiser <git@jolheiser.com>
1 day ago
1 changed files, 2 additions(+), 2 deletions(-)
flake.nix
M flake.nix -> flake.nix
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
diff --git a/flake.nix b/flake.nix
index b03ab6f1b7e99eb0fa631ba61c59c7fbf3a9482e..89f6ffa29b88da9bb669fdc58d76b7e3de716d71 100644
--- a/flake.nix
+++ b/flake.nix
@@ -34,11 +34,11 @@       tctp = forAllSystems (system: tailwind-ctp.packages.${system}.default);
       tctpl = forAllSystems (system: tailwind-ctp-lsp.packages.${system}.default);
     in
     {
-      packages = forAllSystems (system: import ./nix { pkgs = import nixpkgs { inherit system; }; });
+      packages = forAllSystems (system: import ./nix { pkgs = nixpkgs.legacyPackages.${system}; });
       devShells = forAllSystems (
         system:
         let
-          pkgs = import nixpkgs { inherit system; };
+          pkgs = nixpkgs.legacyPackages.${system};
         in
         {
           default = pkgs.mkShell {