13 lines
331 B
Nix
13 lines
331 B
Nix
# 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; };
|
|
}
|