configured flameshot and picom

This commit is contained in:
Rouven Seifert 2023-01-01 17:20:23 +01:00
parent 64ca883018
commit e96ecb6470
Signed by: rouven.seifert
GPG key ID: B95E8FE6B11C4D09
5 changed files with 24 additions and 3 deletions

View file

@ -56,7 +56,6 @@
devmon.enable = true; # automount stuff devmon.enable = true; # automount stuff
printing.enable = true; printing.enable = true;
fprintd.enable = true; # log in using fingerprint fprintd.enable = true; # log in using fingerprint
picom.enable = true; # window transparency
openssh.enable = true; # enabled ssh to have the host keys openssh.enable = true; # enabled ssh to have the host keys
}; };

View file

@ -4,9 +4,11 @@
[ [
./alacritty ./alacritty
./awesome ./awesome
./flameshot
./git ./git
./kdeconnect ./kdeconnect
./neovim ./neovim
./picom
./tmux ./tmux
./vifm ./vifm
./zsh ./zsh

View file

@ -0,0 +1,15 @@
{ config, ... }:
{
services.flameshot = {
enable = true;
settings = {
General = {
contrastOpacity = 188;
disabledTrayIcon=true;
};
Shortcuts = {
TYPE_COPY = "Return";
};
};
};
}

View file

@ -10,8 +10,6 @@
# graphics # graphics
feh feh
flameshot #TODO configure it in nix
picom
okular okular
gimp gimp

View file

@ -0,0 +1,7 @@
{ config, ... }:
{
services.picom = {
enable = true;
# more configuration can go here, but I have no need for it yet
};
}