2e751c0772
the conversion procedure is simple: - find all things that look like options, ie calls to either `mkOption` or `lib.mkOption` that take an attrset. remember the attrset as the option - for all options, find a `description` attribute who's value is not a call to `mdDoc` or `lib.mdDoc` - textually convert the entire value of the attribute to MD with a few simple regexes (the set from mdize-module.sh) - if the change produced a change in the manual output, discard - if the change kept the manual unchanged, add some text to the description to make sure we've actually found an option. if the manual changes this time, keep the converted description this procedure converts 80% of nixos options to markdown. around 2000 options remain to be inspected, but most of those fail the "does not change the manual output check": currently the MD conversion process does not faithfully convert docbook tags like <code> and <package>, so any option using such tags will not be converted at all.
77 lines
2.2 KiB
Nix
77 lines
2.2 KiB
Nix
{ config, pkgs, lib, ... }:
|
|
|
|
with lib;
|
|
|
|
let
|
|
cfg = config.services.psd;
|
|
in {
|
|
options.services.psd = with types; {
|
|
enable = mkOption {
|
|
type = bool;
|
|
default = false;
|
|
description = lib.mdDoc ''
|
|
Whether to enable the Profile Sync daemon.
|
|
'';
|
|
};
|
|
resyncTimer = mkOption {
|
|
type = str;
|
|
default = "1h";
|
|
example = "1h 30min";
|
|
description = lib.mdDoc ''
|
|
The amount of time to wait before syncing browser profiles back to the
|
|
disk.
|
|
|
|
Takes a systemd.unit time span. The time unit defaults to seconds if
|
|
omitted.
|
|
'';
|
|
};
|
|
};
|
|
|
|
config = mkIf cfg.enable {
|
|
systemd = {
|
|
user = {
|
|
services = {
|
|
psd = {
|
|
enable = true;
|
|
description = "Profile Sync daemon";
|
|
wants = [ "psd-resync.service" ];
|
|
wantedBy = [ "default.target" ];
|
|
path = with pkgs; [ rsync kmod gawk nettools util-linux profile-sync-daemon ];
|
|
unitConfig = {
|
|
RequiresMountsFor = [ "/home/" ];
|
|
};
|
|
serviceConfig = {
|
|
Type = "oneshot";
|
|
RemainAfterExit = "yes";
|
|
ExecStart = "${pkgs.profile-sync-daemon}/bin/profile-sync-daemon sync";
|
|
ExecStop = "${pkgs.profile-sync-daemon}/bin/profile-sync-daemon unsync";
|
|
};
|
|
};
|
|
|
|
psd-resync = {
|
|
enable = true;
|
|
description = "Timed profile resync";
|
|
after = [ "psd.service" ];
|
|
wants = [ "psd-resync.timer" ];
|
|
partOf = [ "psd.service" ];
|
|
wantedBy = [ "default.target" ];
|
|
path = with pkgs; [ rsync kmod gawk nettools util-linux profile-sync-daemon ];
|
|
serviceConfig = {
|
|
Type = "oneshot";
|
|
ExecStart = "${pkgs.profile-sync-daemon}/bin/profile-sync-daemon resync";
|
|
};
|
|
};
|
|
};
|
|
|
|
timers.psd-resync = {
|
|
description = "Timer for profile sync daemon - ${cfg.resyncTimer}";
|
|
partOf = [ "psd-resync.service" "psd.service" ];
|
|
|
|
timerConfig = {
|
|
OnUnitActiveSec = "${cfg.resyncTimer}";
|
|
};
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|