fix fish nvim shortcut

This commit is contained in:
chloe caruso 2025-07-05 21:20:10 -07:00
parent fda999db96
commit 10d8cda843

View file

@ -44,7 +44,7 @@
... ...
}@inputs: }@inputs:
let let
lib = nixpkgs.lib; inherit (nixpkgs) lib;
# TODO: apply these overlays sooner and remove uses of legacyPackages elsewhere. # TODO: apply these overlays sooner and remove uses of legacyPackages elsewhere.
overlays = [ overlays = [
inputs.zig.overlays.default inputs.zig.overlays.default
@ -110,10 +110,11 @@
{ {
nvim-chloe = mkNeovim "chloe" system; nvim-chloe = mkNeovim "chloe" system;
nvim-natalie = mkNeovim "natalie" system; nvim-natalie = mkNeovim "natalie" system;
nvim-julia = mkNeovim "julia" system;
} }
// lib.optionalAttrs (system == "aarch64-darwin") { // lib.optionalAttrs (system == "aarch64-darwin") {
# "nix run .#darwin-rebuild" # "nix run .#darwin-rebuild"
darwin-rebuild = darwin.packages.aarch64-darwin.darwin-rebuild; inherit (darwin.packages.aarch64-darwin) darwin-rebuild;
} }
); );