diff --git a/flake.nix b/flake.nix index 89f6ffa29b88da9bb669fdc58d76b7e3de716d71..b03ab6f1b7e99eb0fa631ba61c59c7fbf3a9482e 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 = nixpkgs.legacyPackages.${system}; }); + packages = forAllSystems (system: import ./nix { pkgs = import nixpkgs { inherit system; }; }); devShells = forAllSystems ( system: let - pkgs = nixpkgs.legacyPackages.${system}; + pkgs = import nixpkgs { inherit system; }; in { default = pkgs.mkShell {