From f264935440ea07c9ee5a5e73fe5fe86e25e66ff6 Mon Sep 17 00:00:00 2001 From: PgBiel <9021226+PgBiel@users.noreply.github.com> Date: Sat, 21 Dec 2024 19:56:26 -0300 Subject: [PATCH] fix glistix in flake --- flake.nix | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/flake.nix b/flake.nix index a3adfd4..a817d76 100644 --- a/flake.nix +++ b/flake.nix @@ -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 ]; }; }