Skip to content

Commit

Permalink
fix glistix in flake
Browse files Browse the repository at this point in the history
  • Loading branch information
PgBiel committed Dec 21, 2024
1 parent 45af4db commit f264935
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,14 @@
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs = { self, nixpkgs, utils }: utils.lib.eachDefaultSystem (system:
outputs = { self, nixpkgs, utils, glistix }: utils.lib.eachDefaultSystem (system:
let
pkgs = nixpkgs.legacyPackages.${system};
glistix = glistix.packages.${system}.default;
in
{
devShell = pkgs.mkShell {
buildInputs = [
glistix
glistix.packages.${system}.default
];
};
}
Expand Down

0 comments on commit f264935

Please sign in to comment.