mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 20:39:18 -08:00
15 lines
348 B
Nix
15 lines
348 B
Nix
{
|
|
system,
|
|
inputs,
|
|
...
|
|
} @ args: let
|
|
exportFile = import ./exports.nix args;
|
|
inherit (exportFile) exports exportsSystems;
|
|
inherit (inputs.self.legacyPackages.${system}) pkgs;
|
|
nf-actions-test = pkgs.writeShellScriptBin "nf-actions-test" ''
|
|
${exports}
|
|
${exportsSystems}
|
|
source ${./actions-test.sh}
|
|
'';
|
|
in
|
|
nf-actions-test
|