no more copilot

This commit is contained in:
iofq 2025-07-05 21:18:10 -05:00
parent d360f0e701
commit 5f5ac17935
No known key found for this signature in database
GPG key ID: ECF3B2DA38BF7183
10 changed files with 78 additions and 141 deletions

View file

@ -9,10 +9,6 @@
url = "github:mrcjkb/nix-gen-luarc-json";
inputs.nixpkgs.follows = "nixpkgs";
};
mini-nvim = {
url = "github:echasnovski/mini.nvim";
flake = false;
};
# Add bleeding-edge plugins here.
# They can be updated with `nix flake update` (make sure to commit the generated flake.lock)
# wf-nvim = {
@ -20,22 +16,19 @@
# flake = false;
# };
};
outputs =
inputs@{
self,
nixpkgs,
flake-utils,
...
}:
let
systems = builtins.attrNames nixpkgs.legacyPackages;
outputs = inputs @ {
self,
nixpkgs,
flake-utils,
...
}: let
systems = builtins.attrNames nixpkgs.legacyPackages;
# This is where the Neovim derivation is built.
neovim-overlay = import ./nix/neovim-overlay.nix { inherit inputs; };
in
# This is where the Neovim derivation is built.
neovim-overlay = import ./nix/neovim-overlay.nix {inherit inputs;};
in
flake-utils.lib.eachSystem systems (
system:
let
system: let
pkgs = import nixpkgs {
inherit system;
config.allowUnfree = true;
@ -64,8 +57,7 @@
ln -Tfns $PWD/nvim ~/.config/nvim-dev
'';
};
in
{
in {
packages = rec {
default = nvim;
nvim = pkgs.nvim-pkg;