2025-10-04 15:53:48 +02:00
|
|
|
# NixOS Modules
|
|
|
|
# Import this in your NixOS configuration with:
|
|
|
|
# imports = [ inputs.m3ta-nixpkgs.nixosModules.default ];
|
|
|
|
{
|
|
|
|
config,
|
|
|
|
lib,
|
|
|
|
pkgs,
|
|
|
|
...
|
|
|
|
}: {
|
|
|
|
# This is the main entry point for all custom NixOS modules
|
|
|
|
# Add your custom modules here as imports or inline definitions
|
|
|
|
|
|
|
|
imports = [
|
2025-10-05 09:44:40 +02:00
|
|
|
./ports.nix
|
2025-10-04 15:53:48 +02:00
|
|
|
# Example: ./my-service.nix
|
|
|
|
# Add more module files here as you create them
|
|
|
|
];
|
|
|
|
|
|
|
|
# You can also define inline options here
|
|
|
|
# options = {
|
|
|
|
# m3ta = {
|
|
|
|
# # Your custom options
|
|
|
|
# };
|
|
|
|
# };
|
|
|
|
|
|
|
|
# config = {
|
|
|
|
# # Your custom configuration
|
|
|
|
# };
|
|
|
|
}
|