home-manager/modules/services/flameshot.nix

41 lines
949 B
Nix
Raw Normal View History

2018-05-03 12:29:03 +00:00
{ config, lib, pkgs, ... }:
with lib;
let
cfg = config.services.flameshot;
package = pkgs.flameshot;
2020-02-01 23:39:17 +00:00
in {
2018-05-03 12:29:03 +00:00
meta.maintainers = [ maintainers.hamhut1066 ];
2020-02-01 23:39:17 +00:00
options = { services.flameshot = { enable = mkEnableOption "Flameshot"; }; };
2018-05-03 12:29:03 +00:00
config = mkIf cfg.enable {
assertions = [
(lib.hm.assertions.assertPlatform "services.flameshot" pkgs
lib.platforms.linux)
];
2018-05-03 12:29:03 +00:00
home.packages = [ package ];
systemd.user.services.flameshot = {
Unit = {
2019-05-01 11:13:38 +00:00
Description = "Flameshot screenshot tool";
Requires = [ "tray.target" ];
After = [ "graphical-session-pre.target" "tray.target" ];
2018-05-03 12:29:03 +00:00
PartOf = [ "graphical-session.target" ];
};
2020-02-01 23:39:17 +00:00
Install = { WantedBy = [ "graphical-session.target" ]; };
2018-05-03 12:29:03 +00:00
Service = {
2018-07-29 16:15:50 +00:00
Environment = "PATH=${config.home.profileDirectory}/bin";
2018-05-03 12:29:03 +00:00
ExecStart = "${package}/bin/flameshot";
Restart = "on-abort";
};
};
};
}