2018-05-03 14:29:03 +02:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
with lib;
|
|
|
|
|
|
|
|
let
|
|
|
|
|
|
|
|
cfg = config.services.flameshot;
|
|
|
|
package = pkgs.flameshot;
|
|
|
|
|
2020-02-02 00:39:17 +01:00
|
|
|
in {
|
2018-05-03 14:29:03 +02:00
|
|
|
meta.maintainers = [ maintainers.hamhut1066 ];
|
|
|
|
|
2020-02-02 00:39:17 +01:00
|
|
|
options = { services.flameshot = { enable = mkEnableOption "Flameshot"; }; };
|
2018-05-03 14:29:03 +02:00
|
|
|
|
|
|
|
config = mkIf cfg.enable {
|
2021-07-07 23:24:27 +02:00
|
|
|
assertions = [
|
|
|
|
(lib.hm.assertions.assertPlatform "services.flameshot" pkgs
|
|
|
|
lib.platforms.linux)
|
|
|
|
];
|
|
|
|
|
2018-05-03 14:29:03 +02:00
|
|
|
home.packages = [ package ];
|
|
|
|
|
|
|
|
systemd.user.services.flameshot = {
|
|
|
|
Unit = {
|
2019-05-01 13:13:38 +02:00
|
|
|
Description = "Flameshot screenshot tool";
|
2021-05-22 04:15:12 +02:00
|
|
|
Requires = [ "tray.target" ];
|
|
|
|
After = [ "graphical-session-pre.target" "tray.target" ];
|
2018-05-03 14:29:03 +02:00
|
|
|
PartOf = [ "graphical-session.target" ];
|
|
|
|
};
|
|
|
|
|
2020-02-02 00:39:17 +01:00
|
|
|
Install = { WantedBy = [ "graphical-session.target" ]; };
|
2018-05-03 14:29:03 +02:00
|
|
|
|
|
|
|
Service = {
|
2018-07-29 18:15:50 +02:00
|
|
|
Environment = "PATH=${config.home.profileDirectory}/bin";
|
2018-05-03 14:29:03 +02:00
|
|
|
ExecStart = "${package}/bin/flameshot";
|
|
|
|
Restart = "on-abort";
|
2021-08-14 15:13:31 +02:00
|
|
|
|
|
|
|
# Sandboxing.
|
|
|
|
LockPersonality = true;
|
|
|
|
MemoryDenyWriteExecute = true;
|
|
|
|
NoNewPrivileges = true;
|
|
|
|
PrivateUsers = true;
|
|
|
|
RestrictNamespaces = true;
|
|
|
|
SystemCallArchitectures = "native";
|
|
|
|
SystemCallFilter = "@system-service";
|
2018-05-03 14:29:03 +02:00
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|