mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 00:39:45 +01:00
9b91709899
This adds a basic module for Safe Eyes based off of the one in Nixpkgs.
44 lines
887 B
Nix
44 lines
887 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
let
|
|
|
|
cfg = config.services.safeeyes;
|
|
|
|
in {
|
|
meta.maintainers = [ hm.maintainers.rosuavio ];
|
|
|
|
options = {
|
|
services.safeeyes = {
|
|
enable = mkEnableOption "The Safe Eyes OSGI service";
|
|
|
|
package = mkPackageOption pkgs "safeeyes" { };
|
|
};
|
|
};
|
|
|
|
config = mkIf cfg.enable {
|
|
assertions = [
|
|
(hm.assertions.assertPlatform "services.safeeyes" pkgs platforms.linux)
|
|
];
|
|
|
|
home.packages = [ cfg.package ];
|
|
|
|
systemd.user.services.safeeyes = {
|
|
Install.WantedBy = [ "graphical-session.target" ];
|
|
|
|
Unit = {
|
|
Description = "Safe Eyes";
|
|
PartOf = [ "graphical-session.target" ];
|
|
StartLimitIntervalSec = 350;
|
|
StartLimitBurst = 30;
|
|
};
|
|
|
|
Service = {
|
|
ExecStart = getExe pkgs.safeeyes;
|
|
Restart = "on-failure";
|
|
RestartSec = 3;
|
|
};
|
|
};
|
|
};
|
|
}
|