Extract a flameshot mixin
This commit is contained in:
parent
3379924c0e
commit
490aa3eb99
7 changed files with 20 additions and 32 deletions
19
modules/mixins/flameshot.nix
Normal file
19
modules/mixins/flameshot.nix
Normal file
|
@ -0,0 +1,19 @@
|
|||
{
|
||||
home-manager.users.opdavies =
|
||||
{ config, ... }:
|
||||
{
|
||||
services.flameshot = {
|
||||
enable = true;
|
||||
|
||||
settings = {
|
||||
General = {
|
||||
disabledTrayIcon = false;
|
||||
saveAfterCopy = true;
|
||||
savePath = "${config.xdg.userDirs.pictures}/Screenshots";
|
||||
showHelp = false;
|
||||
uiColor = "#60a5fa";
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue