1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-12-05 08:31:03 +01:00
home-manager/modules/services/safeeyes.nix
Austin Horstman 82ee14ff60
treewide: remove with lib (#6871)
Remove from services.
2025-04-21 11:00:59 -05:00

48 lines
912 B
Nix

{
config,
lib,
pkgs,
...
}:
let
cfg = config.services.safeeyes;
in
{
meta.maintainers = [ lib.hm.maintainers.rosuavio ];
options = {
services.safeeyes = {
enable = lib.mkEnableOption "The Safe Eyes OSGI service";
package = lib.mkPackageOption pkgs "safeeyes" { };
};
};
config = lib.mkIf cfg.enable {
assertions = [
(lib.hm.assertions.assertPlatform "services.safeeyes" pkgs lib.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 = lib.getExe pkgs.safeeyes;
Restart = "on-failure";
RestartSec = 3;
};
};
};
}