small cleanup and version bump

This commit is contained in:
iofq 2025-04-20 13:48:45 -05:00
parent d585a60e1d
commit 21e01f75dc
14 changed files with 115 additions and 380 deletions

View file

@ -26,7 +26,6 @@
nvim = {
url = "github:iofq/nvim.nix";
};
neovim-nightly-overlay.url = "github:nix-community/neovim-nightly-overlay";
deploy-rs = {
url = "github:serokell/deploy-rs";
inputs.nixpkgs.follows = "nixpkgs";
@ -45,10 +44,7 @@
pkgs = import nixpkgs {
inherit system;
config.allowUnfree = true;
overlays = [
inputs.neovim-nightly-overlay.overlays.default
inputs.nvim.overlays.default
];
overlays = [ inputs.nvim.overlays.default ];
};
eachSystem = f: nixpkgs.lib.genAttrs (import systems) (system: f nixpkgs.legacyPackages.${system});
treefmtEval = eachSystem (pkgs: inputs.treefmt-nix.lib.evalModule pkgs ./treefmt.nix);