63 lines
1.3 KiB
Nix
63 lines
1.3 KiB
Nix
{ pkgs, ... }:
|
|
{
|
|
imports = [
|
|
./feh-wallpaper-changer.nix
|
|
];
|
|
|
|
home.packages = [
|
|
pkgs.dunst
|
|
pkgs.flameshot
|
|
pkgs.st
|
|
pkgs.dmenu
|
|
pkgs.picom
|
|
pkgs.xclip
|
|
|
|
(pkgs.writeShellScriptBin "dunstify-volume-notification" (builtins.readFile ./scripts/dunstify-volume-notification.sh))
|
|
];
|
|
|
|
home.file.".Xresources" = {
|
|
recursive = true;
|
|
text = ''
|
|
!st terminal
|
|
st.alpha: 0.8
|
|
*.font: monospace:pixelsize=21:antialias=true:autohint=true;
|
|
*.font2: NotoColorEmoji:pixelsize=19:antialias=true:autohint=true;
|
|
|
|
! dwm
|
|
dwm.borderpx: 3
|
|
'';
|
|
};
|
|
|
|
home.file.".config/picom/picom.conf" = {
|
|
recursive = true;
|
|
text = ''
|
|
vsync = true;
|
|
backend = "xrender";
|
|
shadow = true;
|
|
shadow-radius = 10;
|
|
shadow-offset-x = -5;
|
|
shadow-offset-y = -5;
|
|
fading = true;
|
|
fade-in-step = 0.2;
|
|
fade-out-step = 0.2;
|
|
fade-delta = 50;
|
|
'';
|
|
};
|
|
|
|
home.file.".config/sxhkd/sxhkdrc" = {
|
|
recursive = true;
|
|
text = ''
|
|
vsync = true;
|
|
backend = "xrender";
|
|
shadow = true;
|
|
shadow-radius = 10;
|
|
shadow-offset-x = -5;
|
|
shadow-offset-y = -5;
|
|
fading = true;
|
|
fade-in-step = 0.2;
|
|
fade-out-step = 0.2;
|
|
fade-delta = 50;
|
|
'';
|
|
};
|
|
}
|