1
0
mirror of https://github.com/tboerger/nixos-config synced 2024-11-23 12:42:01 +01:00
github.com-tboerger-nixos-c.../machines/services/timesyncd.nix
2022-09-27 22:07:46 +02:00

29 lines
411 B
Nix

{ pkgs, lib, config, options, ... }:
with lib;
let
cfg = config.personal.services.timesyncd;
in
{
options = {
personal = {
services = {
timesyncd = {
enable = mkEnableOption "Timesyncd" // {
default = true;
};
};
};
};
};
config = mkIf cfg.enable {
services = {
timesyncd = {
enable = true;
};
};
};
}