automatic-timezoned: initial disabled service
Signed-off-by: Myned <dev@bjork.tech>
This commit is contained in:
parent
5414953f67
commit
d948aac059
2 changed files with 16 additions and 0 deletions
15
options/custom/services/automatic-timezoned.nix
Normal file
15
options/custom/services/automatic-timezoned.nix
Normal file
|
@ -0,0 +1,15 @@
|
|||
{
|
||||
config,
|
||||
lib,
|
||||
...
|
||||
}:
|
||||
with lib; let
|
||||
cfg = config.custom.services.automatic-timezoned;
|
||||
in {
|
||||
options.custom.services.automatic-timezoned.enable = mkOption {default = false;};
|
||||
|
||||
config = mkIf cfg.enable {
|
||||
# https://github.com/maxbrunet/automatic-timezoned
|
||||
services.automatic-timezoned.enable = true;
|
||||
};
|
||||
}
|
|
@ -6,6 +6,7 @@
|
|||
with lib; {
|
||||
config.custom.services = mkMerge [
|
||||
(mkIf config.custom.default {
|
||||
#// automatic-timezoned.enable = true;
|
||||
#// agenix.enable = true;
|
||||
#// netbird.enable = true;
|
||||
tailscale.enable = true;
|
||||
|
|
Loading…
Reference in a new issue