mirror of
https://codeberg.org/leana8959/.files.git
synced 2025-12-06 14:49:14 +00:00
8 lines
231 B
Nix
8 lines
231 B
Nix
let
|
|
sources = import ../../npins;
|
|
inherit (sources) eepy;
|
|
inherit (eepy.repository) owner repo;
|
|
in
|
|
final: _: {
|
|
eepy = (builtins.getFlake "github:${owner}/${repo}/${eepy.revision}").packages.${final.system}.default;
|
|
}
|