1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/modules/services/system/uptimed.nix
Rob Vermaas ba1a9aecfd * added uptimed module, default disabled
svn path=/nixos/trunk/; revision=17174
2009-09-16 07:49:23 +00:00

82 lines
1.3 KiB
Nix

{pkgs, config, ...}:
let
inherit (pkgs.lib) mkOption mkIf singleton;
inherit (pkgs) uptimed;
stateDir = "/var/spool/uptimed";
uptimedUser = "uptimed";
modprobe = config.system.sbin.modprobe;
uptimedFlags = "";
in
{
###### interface
options = {
services.uptimed = {
enable = mkOption {
default = false;
description = ''
Uptimed allows you to track your highest uptimes.
'';
};
};
};
###### implementation
config = mkIf config.services.uptimed.enable {
users.extraUsers = singleton
{ name = uptimedUser;
uid = config.ids.uids.uptimed;
description = "Uptimed daemon user";
home = stateDir;
};
jobs = singleton {
name = "uptimed";
job = ''
description "Uptimed daemon"
start on startup
stop on shutdown
start script
mkdir -m 0755 -p ${stateDir}
chown ${uptimedUser} ${stateDir}
# Needed to run uptimed as an unprivileged user.
${modprobe}/sbin/modprobe capability || true
if ! test -f ${stateDir}/bootid ; then
${uptimed}/sbin/uptimed -b
fi
end script
respawn ${uptimed}/sbin/uptimed ${uptimedFlags}
'';
};
};
}