This commit is contained in:
Rachel Lambda Samuelsson 2024-10-17 02:29:48 +02:00
parent df3f846061
commit 0da764f729
3 changed files with 10 additions and 1 deletions

View File

@ -15,6 +15,7 @@ in {
./launcher.nix
./media.nix
./neovim.nix
./picom.nix
./plasma.nix
./shell.nix
./ssh.nix

View File

@ -70,7 +70,6 @@
virt-manager-qt
i3
wmctrl
picom
xwallpaper
]) ++ [
extra.agda

9
home-manager/picom.nix Normal file
View File

@ -0,0 +1,9 @@
{ ... }:
{
services.picom = {
enable = true;
backend = "glx";
settings.refresh-rate = "144";
vSync = false;
};
}