2025-01-13 11:52:09 +08:00
|
|
|
{ inputs, ... }:
|
|
|
|
with inputs;
|
|
|
|
with nixpkgs.lib;
|
|
|
|
let
|
2024-01-02 14:42:27 +08:00
|
|
|
mapInputs = fn: map fn (lists.remove "self" (attrNames inputs));
|
|
|
|
channelPath = "/etc/nix/channels";
|
2025-01-13 11:52:09 +08:00
|
|
|
in
|
|
|
|
{
|
2024-01-02 14:42:27 +08:00
|
|
|
nix = {
|
|
|
|
nixPath = mapInputs (i: "${i}=${channelPath}/${i}");
|
2025-01-13 11:52:09 +08:00
|
|
|
registry = listToAttrs (
|
|
|
|
mapInputs (name: {
|
2024-01-02 14:42:27 +08:00
|
|
|
inherit name;
|
2025-01-13 11:52:09 +08:00
|
|
|
value = {
|
|
|
|
flake = inputs.${name};
|
|
|
|
};
|
|
|
|
})
|
|
|
|
);
|
2024-01-02 14:42:27 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
systemd.tmpfiles.rules = mapInputs (i: "L+ ${channelPath}/${i} - - - - ${inputs.${i}.outPath}");
|
|
|
|
}
|