aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/nix
diff options
context:
space:
mode:
Diffstat (limited to 'nix')
-rw-r--r--nix/flake.nix4
1 files changed, 1 insertions, 3 deletions
diff --git a/nix/flake.nix b/nix/flake.nix
index ca2ad66..9e26edb 100644
--- a/nix/flake.nix
+++ b/nix/flake.nix
@@ -25,9 +25,7 @@
overlays = [
# Expose `pkgs.tuicr` so common.nix can list it next to other
# packages without threading inputs into every module.
- # tuicr's flake uses the legacy `defaultPackage.<system>`
- # schema (not `packages.<system>.default`); see its flake.nix.
- (final: prev: { tuicr = tuicr.defaultPackage.${system}; })
+ (final: prev: { tuicr = tuicr.packages.${system}.default; })
];
# Whitelist specific unfree packages (claude-code,
# github-copilot-cli) instead of globally setting allowUnfree,