From 10d8cda8436c24f9a6b17a0f6352179467043b08 Mon Sep 17 00:00:00 2001 From: chloe caruso Date: Sat, 5 Jul 2025 21:20:10 -0700 Subject: [PATCH] fix fish nvim shortcut --- flake.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/flake.nix b/flake.nix index 1af0c7d..3c0f470 100644 --- a/flake.nix +++ b/flake.nix @@ -44,7 +44,7 @@ ... }@inputs: let - lib = nixpkgs.lib; + inherit (nixpkgs) lib; # TODO: apply these overlays sooner and remove uses of legacyPackages elsewhere. overlays = [ inputs.zig.overlays.default @@ -110,10 +110,11 @@ { nvim-chloe = mkNeovim "chloe" system; nvim-natalie = mkNeovim "natalie" system; + nvim-julia = mkNeovim "julia" system; } // lib.optionalAttrs (system == "aarch64-darwin") { # "nix run .#darwin-rebuild" - darwin-rebuild = darwin.packages.aarch64-darwin.darwin-rebuild; + inherit (darwin.packages.aarch64-darwin) darwin-rebuild; } );