mirror of
https://github.com/nix-community/home-manager.git
synced 2025-12-09 18:41:06 +01:00
caffeine: add service
This commit is contained in:
parent
612afee126
commit
cabf9ddd98
4 changed files with 44 additions and 0 deletions
33
modules/services/caffeine.nix
Normal file
33
modules/services/caffeine.nix
Normal file
|
|
@ -0,0 +1,33 @@
|
|||
{ config, lib, pkgs, ... }:
|
||||
|
||||
with lib;
|
||||
|
||||
let
|
||||
|
||||
cfg = config.services.caffeine;
|
||||
|
||||
in {
|
||||
meta.maintainers = [ maintainers.uvnikita ];
|
||||
|
||||
options = {
|
||||
services.caffeine = { enable = mkEnableOption "Caffeine service"; };
|
||||
};
|
||||
|
||||
config = mkIf cfg.enable {
|
||||
systemd.user.services.caffeine = {
|
||||
Unit = { Description = "caffeine"; };
|
||||
|
||||
Install = { WantedBy = [ "graphical-session.target" ]; };
|
||||
|
||||
Service = {
|
||||
Restart = "on-failure";
|
||||
PrivateTmp = true;
|
||||
ProtectSystem = "full";
|
||||
ProtectHome = "yes";
|
||||
Type = "exec";
|
||||
Slice = "session.slice";
|
||||
ExecStart = "${pkgs.caffeine-ng}/bin/caffeine";
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue