mirror of
https://git.sr.ht/~rouven/nixos-config
synced 2024-11-15 05:13:10 +01:00
configured flameshot and picom
This commit is contained in:
parent
64ca883018
commit
e96ecb6470
|
@ -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
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -4,9 +4,11 @@
|
||||||
[
|
[
|
||||||
./alacritty
|
./alacritty
|
||||||
./awesome
|
./awesome
|
||||||
|
./flameshot
|
||||||
./git
|
./git
|
||||||
./kdeconnect
|
./kdeconnect
|
||||||
./neovim
|
./neovim
|
||||||
|
./picom
|
||||||
./tmux
|
./tmux
|
||||||
./vifm
|
./vifm
|
||||||
./zsh
|
./zsh
|
||||||
|
|
15
users/rouven/modules/flameshot/default.nix
Normal file
15
users/rouven/modules/flameshot/default.nix
Normal file
|
@ -0,0 +1,15 @@
|
||||||
|
{ config, ... }:
|
||||||
|
{
|
||||||
|
services.flameshot = {
|
||||||
|
enable = true;
|
||||||
|
settings = {
|
||||||
|
General = {
|
||||||
|
contrastOpacity = 188;
|
||||||
|
disabledTrayIcon=true;
|
||||||
|
};
|
||||||
|
Shortcuts = {
|
||||||
|
TYPE_COPY = "Return";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
|
@ -10,8 +10,6 @@
|
||||||
|
|
||||||
# graphics
|
# graphics
|
||||||
feh
|
feh
|
||||||
flameshot #TODO configure it in nix
|
|
||||||
picom
|
|
||||||
okular
|
okular
|
||||||
gimp
|
gimp
|
||||||
|
|
||||||
|
|
7
users/rouven/modules/picom/default.nix
Normal file
7
users/rouven/modules/picom/default.nix
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
{ config, ... }:
|
||||||
|
{
|
||||||
|
services.picom = {
|
||||||
|
enable = true;
|
||||||
|
# more configuration can go here, but I have no need for it yet
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue