way-edges feature

This commit is contained in:
2026-07-07 16:45:09 +01:00
parent a3ad40702b
commit 4a2730ed44
3 changed files with 81 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
{
inputs,
moduleWithSystem,
...
}: {
flake.nixosModules.way-edges = moduleWithSystem ({self', ...}: {
environment.systemPackages = with self'.packages; [
way-edges
];
});
perSystem = {pkgs, ...}: {
packages.way-edges = inputs.wrappers.lib.wrapPackage ({...}: {
inherit pkgs;
package = pkgs.way-edges;
flags = {
"--config-path" = ./config.jsonc;
};
});
};
}