fix(flake): remove optional inputs
Some flakes have optional inputs, lets remove them and save some bandwidth!
This commit is contained in:
parent
d85f1a35f7
commit
11d2c32340
2 changed files with 13 additions and 127 deletions
14
flake.nix
14
flake.nix
|
@ -24,19 +24,21 @@
|
|||
inputs = {
|
||||
nixpkgs.follows = "nixpkgs";
|
||||
home-manager.follows = "home-manager";
|
||||
# disable optional inputs
|
||||
flake-compat.follows = "";
|
||||
};
|
||||
};
|
||||
nixvim = {
|
||||
url = "github:nix-community/nixvim";
|
||||
inputs = {
|
||||
nixpkgs.follows = "unstable";
|
||||
nix-darwin.follows = ""; # disable MacOS stuff
|
||||
home-manager.follows = "home-manager";
|
||||
flake-compat.follows = "stylix/flake-compat";
|
||||
nuschtosSearch.inputs = {
|
||||
flake-utils.follows = "lix-module/flake-utils";
|
||||
nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
# disable optional inputs
|
||||
flake-compat.follows = "";
|
||||
nix-darwin.follows = "";
|
||||
nuschtosSearch.follows = "";
|
||||
devshell.follows = "";
|
||||
git-hooks.follows = "";
|
||||
};
|
||||
};
|
||||
# For deduplication
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue