fix fish nvim shortcut
This commit is contained in:
parent
fda999db96
commit
10d8cda843
1 changed files with 3 additions and 2 deletions
|
@ -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;
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue