diff options
Diffstat (limited to 'templates/system-flake/pkgs/default.nix')
| -rw-r--r-- | templates/system-flake/pkgs/default.nix | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/templates/system-flake/pkgs/default.nix b/templates/system-flake/pkgs/default.nix new file mode 100644 index 0000000..78a86d4 --- /dev/null +++ b/templates/system-flake/pkgs/default.nix @@ -0,0 +1,12 @@ +final: prev: +with prev.lib; let + inherit (final) callPackage fetchpatch; +in { + lib = callPackage ./lib {}; + + hello-world = callPackage ./hello-world {}; + + override = { + sl = prev.sl.overrideAttrs {pname = "my-sl";}; + }; +} |
