packages
This commit is contained in:
parent
d6bdbe514d
commit
dd65a32a60
9 changed files with 115 additions and 68 deletions
21
overhaul/modules/template.nix
Normal file
21
overhaul/modules/template.nix
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
{
|
||||
inputs,
|
||||
outputs,
|
||||
lib,
|
||||
config,
|
||||
pkgs,
|
||||
...
|
||||
}: let
|
||||
inherit (lib) mkEnableOption mkIf mkOption types;
|
||||
cfg = config.horseman.xxxxxx.xxxxxx;
|
||||
in {
|
||||
options = {
|
||||
horseman.xxxxxx.xxxxxx = {
|
||||
enable = mkEnableOption "";
|
||||
};
|
||||
};
|
||||
|
||||
config = mkIf cfg.enable {
|
||||
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue