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