diff options
| author | Franck Cuny <franck@fcuny.net> | 2023-05-08 19:04:26 -0700 |
|---|---|---|
| committer | Franck Cuny <franck@fcuny.net> | 2023-05-08 19:09:01 -0700 |
| commit | cf9158ab77cbfa701a60f485d3c2bc8de9a894e0 (patch) | |
| tree | edbc3c305fec67bf3bff65915d8eefbfeae3e5e9 /modules/homelab/domain.nix | |
| parent | home: get rid of mail / gpg modules (diff) | |
| download | infra-cf9158ab77cbfa701a60f485d3c2bc8de9a894e0.tar.gz | |
module for homelab
Diffstat (limited to '')
| -rw-r--r-- | modules/homelab/domain.nix | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/modules/homelab/domain.nix b/modules/homelab/domain.nix new file mode 100644 index 0000000..2f0acfa --- /dev/null +++ b/modules/homelab/domain.nix @@ -0,0 +1,17 @@ +{ lib, config, self, ... }: +let + inherit (builtins) readFile fromTOML; +in +{ + options = with lib; { + homelab.domain = mkOption { + type = types.str; + default = null; + description = "Domain"; + }; + }; + + config = { + homelab.domain = (fromTOML (readFile "${self}/configs/homelab.toml")).domain; + }; +} |
