first
This commit is contained in:
28
modules/nixos/default.nix
Normal file
28
modules/nixos/default.nix
Normal file
@@ -0,0 +1,28 @@
|
||||
# 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 = [
|
||||
# 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
|
||||
# };
|
||||
}
|
Reference in New Issue
Block a user