mirror of
https://codeberg.org/leana8959/.files.git
synced 2025-12-06 06:39:14 +00:00
9 lines
278 B
Nix
9 lines
278 B
Nix
# Run the one with my cool feature here for now
|
|
let
|
|
sources = import ../sources.nix;
|
|
inherit (sources) nil;
|
|
inherit (nil.repository) owner repo;
|
|
in
|
|
final: _: {
|
|
nil = (builtins.getFlake "github:${owner}/${repo}/${nil.revision}").packages.${final.system}.default;
|
|
}
|