chore(deps): remove go-grip and blink-cmp flake inputs

This commit is contained in:
Guz
2025-12-08 21:38:16 -03:00
parent 21646b69b3
commit 845575ef33
3 changed files with 1 additions and 125 deletions

113
flake.lock generated
View File

@@ -1,87 +1,5 @@
{ {
"nodes": { "nodes": {
"blink-cmp": {
"inputs": {
"fenix": "fenix",
"flake-parts": "flake-parts",
"nixpkgs": [
"nixpkgs"
]
},
"locked": {
"lastModified": 1762968852,
"narHash": "sha256-62HfxIbUe2b4yGgC/sHFRbFo2pzNs0KFS6Pn6S1xbkA=",
"owner": "Saghen",
"repo": "blink.cmp",
"rev": "de573225b473eb053c356b2c2f5d65aead24b66d",
"type": "github"
},
"original": {
"owner": "Saghen",
"repo": "blink.cmp",
"type": "github"
}
},
"fenix": {
"inputs": {
"nixpkgs": [
"blink-cmp",
"nixpkgs"
],
"rust-analyzer-src": "rust-analyzer-src"
},
"locked": {
"lastModified": 1761028747,
"narHash": "sha256-UqCbRuqnsVURCB0hLZL9SwFNDNftIE1Zxj7Ykf1aRj4=",
"owner": "nix-community",
"repo": "fenix",
"rev": "1dd37dd710195936f675eb0d36cf284806f99a94",
"type": "github"
},
"original": {
"owner": "nix-community",
"repo": "fenix",
"type": "github"
}
},
"flake-parts": {
"inputs": {
"nixpkgs-lib": "nixpkgs-lib"
},
"locked": {
"lastModified": 1733312601,
"narHash": "sha256-4pDvzqnegAfRkPwO3wmwBhVi/Sye1mzps0zHWYnP88c=",
"owner": "hercules-ci",
"repo": "flake-parts",
"rev": "205b12d8b7cd4802fbcb8e8ef6a0f1408781a4f9",
"type": "github"
},
"original": {
"owner": "hercules-ci",
"repo": "flake-parts",
"type": "github"
}
},
"go-grip": {
"inputs": {
"nixpkgs": [
"nixpkgs"
]
},
"locked": {
"lastModified": 1741110408,
"narHash": "sha256-SN4ZNafPGtXvJEfVNEPch8dtGQlm4PZrnKBw5SZwYxg=",
"owner": "guz013",
"repo": "go-grip",
"rev": "deb857f70d6f2ff2ca5cf52d55b2eb5e40f2e916",
"type": "github"
},
"original": {
"owner": "guz013",
"repo": "go-grip",
"type": "github"
}
},
"mdfmt": { "mdfmt": {
"flake": false, "flake": false,
"locked": { "locked": {
@@ -114,42 +32,11 @@
"type": "github" "type": "github"
} }
}, },
"nixpkgs-lib": {
"locked": {
"lastModified": 1733096140,
"narHash": "sha256-1qRH7uAUsyQI7R1Uwl4T+XvdNv778H0Nb5njNrqvylY=",
"type": "tarball",
"url": "https://github.com/NixOS/nixpkgs/archive/5487e69da40cbd611ab2cadee0b4637225f7cfae.tar.gz"
},
"original": {
"type": "tarball",
"url": "https://github.com/NixOS/nixpkgs/archive/5487e69da40cbd611ab2cadee0b4637225f7cfae.tar.gz"
}
},
"root": { "root": {
"inputs": { "inputs": {
"blink-cmp": "blink-cmp",
"go-grip": "go-grip",
"mdfmt": "mdfmt", "mdfmt": "mdfmt",
"nixpkgs": "nixpkgs" "nixpkgs": "nixpkgs"
} }
},
"rust-analyzer-src": {
"flake": false,
"locked": {
"lastModified": 1760976639,
"narHash": "sha256-v+teOfOLbR9UFLuaMfbsd/L5ckJBcQJyeFj23V3lz8g=",
"owner": "rust-lang",
"repo": "rust-analyzer",
"rev": "4a305f565ab964caf22dc72980a44b2970a9c2f1",
"type": "github"
},
"original": {
"owner": "rust-lang",
"ref": "nightly",
"repo": "rust-analyzer",
"type": "github"
}
} }
}, },
"root": "root", "root": "root",

View File

@@ -1,16 +1,7 @@
{ {
description = "My Neovim configuration";
inputs = { inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable"; nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
blink-cmp = {
url = "github:Saghen/blink.cmp";
inputs.nixpkgs.follows = "nixpkgs";
};
go-grip = {
url = "github:guz013/go-grip";
inputs.nixpkgs.follows = "nixpkgs";
};
mdfmt = { mdfmt = {
url = "github:moorereason/mdfmt"; url = "github:moorereason/mdfmt";
flake = false; flake = false;
@@ -49,8 +40,6 @@
}: { }: {
neovim = import ./package.nix { neovim = import ./package.nix {
inherit pkgs lib; inherit pkgs lib;
blink-cmp = inputs.blink-cmp.packages.${stdenv.hostPlatform.system}.default;
go-grip = inputs.go-grip.packages.${stdenv.hostPlatform.system}.default;
mdfmt = self.packages.${stdenv.hostPlatform.system}.mdfmt; mdfmt = self.packages.${stdenv.hostPlatform.system}.mdfmt;
}; };
mdfmt = pkgs.buildGoModule { mdfmt = pkgs.buildGoModule {

View File

@@ -5,7 +5,7 @@
blink-cmp ? pkgs.vimPlugins.blink-cmp, blink-cmp ? pkgs.vimPlugins.blink-cmp,
ripgrep ? pkgs.ripgrep, ripgrep ? pkgs.ripgrep,
mdfmt ? null, mdfmt ? null,
go-grip ? null, go-grip ? pkgs.go-grip,
yazi ? pkgs.yazi, yazi ? pkgs.yazi,
... ...
}: let }: let