Merge pull request #360 from typedrat/fix/flake-nix-missing-rec

Fix the flake evaluation regression from #356
This commit is contained in:
Aaddrick
2026-03-31 09:36:17 -04:00
committed by GitHub

View File

@@ -15,6 +15,9 @@
claude-desktop = pkgs.callPackage ./nix/claude-desktop.nix {
inherit node-pty;
};
claude-desktop-fhs = pkgs.callPackage ./nix/fhs.nix {
inherit claude-desktop;
};
in {
_module.args.pkgs = import inputs.nixpkgs {
inherit system;
@@ -24,10 +27,7 @@
};
packages = {
inherit claude-desktop;
claude-desktop-fhs = pkgs.callPackage ./nix/fhs.nix {
inherit claude-desktop;
};
inherit claude-desktop claude-desktop-fhs;
default = claude-desktop-fhs;
};
};