Add notes on use to otherwise unwanted inputs.
This commit is contained in:
parent
18fb4866d2
commit
3b9e0e0144
1 changed files with 23 additions and 7 deletions
30
flake.nix
30
flake.nix
|
@ -89,22 +89,38 @@
|
||||||
# but don't like that they're included >:(
|
# but don't like that they're included >:(
|
||||||
#########
|
#########
|
||||||
|
|
||||||
# I don't like `flake-utils`, but so many things use it that I might as
|
/*
|
||||||
# well only keep a single version of it.
|
Used by:
|
||||||
|
- lix
|
||||||
|
- nixos-wsl
|
||||||
|
*/
|
||||||
|
flake-compat = {
|
||||||
|
url = "github:edolstra/flake-compat";
|
||||||
|
};
|
||||||
|
|
||||||
|
/*
|
||||||
|
Used by:
|
||||||
|
- lix-module
|
||||||
|
- ninfs
|
||||||
|
- Itself
|
||||||
|
- inputs.pyctr
|
||||||
|
- nixos-wsl
|
||||||
|
- xil
|
||||||
|
*/
|
||||||
flake-utils = {
|
flake-utils = {
|
||||||
url = "github:numtide/flake-utils";
|
url = "github:numtide/flake-utils";
|
||||||
inputs.systems.follows = "nix-systems_default";
|
inputs.systems.follows = "nix-systems_default";
|
||||||
};
|
};
|
||||||
|
|
||||||
# Ditto to github:nix-systems/default
|
/*
|
||||||
|
Used by:
|
||||||
|
- agenix
|
||||||
|
- flake-utils
|
||||||
|
*/
|
||||||
nix-systems_default = {
|
nix-systems_default = {
|
||||||
url = "github:nix-systems/default";
|
url = "github:nix-systems/default";
|
||||||
};
|
};
|
||||||
|
|
||||||
# Ditto to github:edolstra/flake-compat
|
|
||||||
flake-compat = {
|
|
||||||
url = "github:edolstra/flake-compat";
|
|
||||||
};
|
|
||||||
|
|
||||||
}; # inputs
|
}; # inputs
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue