From 0da764f729f4823b6ad1df7cc686abb1989cd50c Mon Sep 17 00:00:00 2001 From: Rachel Lambda Samuelsson Date: Thu, 17 Oct 2024 02:29:48 +0200 Subject: [PATCH] picom --- home-manager/all.nix | 1 + home-manager/applications.nix | 1 - home-manager/picom.nix | 9 +++++++++ 3 files changed, 10 insertions(+), 1 deletion(-) create mode 100644 home-manager/picom.nix 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; + }; +}