git shut up im adding everything
This commit is contained in:
parent
57e922ddc0
commit
4735739ad9
1 changed files with 13 additions and 0 deletions
13
templates/example-module/example.nix
Normal file
13
templates/example-module/example.nix
Normal file
|
@ -0,0 +1,13 @@
|
|||
{ outputs, options, config, lib, pkgs, ...}:
|
||||
with lib;
|
||||
let
|
||||
cfg = config.modules.example;
|
||||
in
|
||||
{
|
||||
options.modules.example = {
|
||||
enable = mkEnableOption false;
|
||||
};
|
||||
|
||||
config = mkIf cfg.enable {
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue