added support for keys in external files

This commit is contained in:
2023-08-01 21:58:56 +02:00
parent db71bf8452
commit 12a4ab7ae7
3 changed files with 29 additions and 2 deletions

15
nix/hm-module.nix Normal file
View File

@ -0,0 +1,15 @@
{ config, lib, pkgs, ... }:
let
cfg = config.dyn-gandi;
in {
options.dyn-gandi = {
enable = lib.mkEnableOption null // {
description = lib.mdDoc '''';
};
};
config = lib.mkIf cfg.enable {
};
}