git shut up im adding everything

This commit is contained in:
Sakooooo 2023-07-09 01:04:19 +03:00
parent 57e922ddc0
commit 4735739ad9
Signed by: sako
GPG key ID: 3FD715D87D7725E0

View 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 {
};
}