1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-02 21:13:33 +02:00
home-manager/modules/services/safeeyes.nix
Rosario Pulella 9b91709899
safeeyes: add module
This adds a basic module for Safe Eyes based off of the one in
Nixpkgs.
2022-09-25 23:01:25 +02:00

45 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;
};
};
};
}