1
0
mirror of https://github.com/nix-community/home-manager synced 2024-07-02 03:18:32 +02:00
home-manager/modules/services/compton.nix

30 lines
604 B
Nix
Raw Normal View History

2017-09-13 13:31:10 +02:00
{ config, lib, pkgs, ... }:
with lib;
{
options = {
services.compton = {
enable = mkEnableOption "Compton X11 compositor";
};
};
config = mkIf config.services.compton.enable {
systemd.user.services.compton = {
Unit = {
Description = "Compton X11 compositor";
After = [ "graphical-session-pre.target" ];
PartOf = [ "graphical-session.target" ];
};
Install = {
WantedBy = [ "graphical-session.target" ];
};
Service = {
ExecStart = "${pkgs.compton}/bin/compton";
};
};
};
}