9 lines
189 B
Nix
9 lines
189 B
Nix
|
|
{ lib, ... }:
|
||
|
|
{
|
||
|
|
flake-file = {
|
||
|
|
outputs = lib.mkForce ''
|
||
|
|
inputs: inputs.flake-parts.lib.mkFlake { inherit inputs; }
|
||
|
|
(inputs.import-tree [./module ./puter])
|
||
|
|
'';
|
||
|
|
};
|
||
|
|
}
|