diff --git a/home-manager/all.nix b/home-manager/all.nix index 97c835e..19adbbf 100644 --- a/home-manager/all.nix +++ b/home-manager/all.nix @@ -15,6 +15,7 @@ in { ./launcher.nix ./media.nix ./neovim.nix + ./picom.nix ./plasma.nix ./shell.nix ./ssh.nix diff --git a/home-manager/applications.nix b/home-manager/applications.nix index 449fcb4..ef3d06d 100644 --- a/home-manager/applications.nix +++ b/home-manager/applications.nix @@ -70,7 +70,6 @@ virt-manager-qt i3 wmctrl - picom xwallpaper ]) ++ [ extra.agda diff --git a/home-manager/picom.nix b/home-manager/picom.nix new file mode 100644 index 0000000..fc44faa --- /dev/null +++ b/home-manager/picom.nix @@ -0,0 +1,9 @@ +{ ... }: +{ + services.picom = { + enable = true; + backend = "glx"; + settings.refresh-rate = "144"; + vSync = false; + }; +}