+2
-2
flake.nix
+2
-2
flake.nix
···
34
34
tctpl = forAllSystems (system: tailwind-ctp-lsp.packages.${system}.default);
35
35
in
36
36
{
37
-
packages = forAllSystems (system: import ./nix { pkgs = import nixpkgs { inherit system; }; });
37
+
packages = forAllSystems (system: import ./nix { pkgs = nixpkgs.legacyPackages.${system}; });
38
38
devShells = forAllSystems (
39
39
system:
40
40
let
41
-
pkgs = import nixpkgs { inherit system; };
41
+
pkgs = nixpkgs.legacyPackages.${system};
42
42
in
43
43
{
44
44
default = pkgs.mkShell {