mirror of
https://github.com/sadan4/dotfiles.git
synced 2025-06-27 06:28:20 -04:00
22 lines
528 B
Nix
22 lines
528 B
Nix
{ config, ... }:
|
|
{
|
|
# needed to workaround https://github.com/nix-community/home-manager/issues/2064
|
|
systemd.user.targets.tray = {
|
|
Unit = {
|
|
Description = "Home Manager System Tray";
|
|
Requires = [ "graphical-session-pre.target" ];
|
|
};
|
|
};
|
|
services = {
|
|
flameshot = {
|
|
enable = true;
|
|
settings = {
|
|
General = {
|
|
savePath = "/home/${config.home.username}/ss/";
|
|
saveAsFileExtension = ".png";
|
|
showDesktopNotification = false;
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|