- Update root AGENTS.md with regenerative content (144 lines, telegraphic) - Add pkgs/AGENTS.md for package registry conventions (33 lines) - Add docs/AGENTS.md for documentation structure (34 lines) - All files follow telegraphic style, no redundancy with parent - Preserves existing modules/home-manager/AGENTS.md Hierarchy: ./AGENTS.md (root) ├── pkgs/AGENTS.md ├── docs/AGENTS.md └── modules/home-manager/AGENTS.md (existing)
31 lines
604 B
Nix
31 lines
604 B
Nix
# 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 = [
|
|
./mem0.nix
|
|
./ports.nix
|
|
# 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
|
|
# };
|
|
}
|