+lib +portshelper

This commit is contained in:
m3tam3re
2025-10-04 17:03:46 +02:00
parent 1ce83403bc
commit 4fa3a8b551
6 changed files with 443 additions and 0 deletions

12
lib/default.nix Normal file
View File

@@ -0,0 +1,12 @@
# Library of helper functions for m3ta-nixpkgs
# Usage in your configuration:
# let
# m3taLib = inputs.m3ta-nixpkgs.lib.${system};
# in ...
{lib}: {
# Port management utilities
ports = import ./ports.nix {inherit lib;};
# Add more helper modules here as needed
# example = import ./example.nix { inherit lib; };
}