Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/signalwalker/nix.home.lib
https://github.com/signalwalker/nix.home.lib
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/signalwalker/nix.home.lib
- Owner: SignalWalker
- Created: 2022-08-16T19:44:20.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-09-17T23:37:47.000Z (3 months ago)
- Last Synced: 2024-09-18T03:55:18.605Z (3 months ago)
- Language: Nix
- Size: 131 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Nix SignalModules Library
## SignalModules
```nix
dependencySet = {
inputs = {}; # set of flakeInputs from which to resolve dependencies
filter = []; # names of attributes to remove from `inputs` (ex. "self")
outputs = {
${inputName}.${output} = []; # names of attributes depended on from `${inputName}.${output}`
};
};
resolvedDependency = {}; # a flake input resolved
signalModule.${foo} = {
dependencies = dependencySet;
outputs =
dependencies: # resolved dependencies, as specified in `dependencies` above
{
# attribute set of flake outputs
};
};
```