diff options
| author | Caroline Larimore <caroline@larimo.re> | 2024-07-25 22:52:20 -0700 |
|---|---|---|
| committer | Caroline Larimore <caroline@larimo.re> | 2024-07-25 23:00:44 -0700 |
| commit | 2f17e369400b9c895b3554008ab3efbc76255428 (patch) | |
| tree | 172c910e17f14bb8d0d7306fe527c2c79140df64 /roles/home/desktop/picom.nix | |
| parent | 10c984caf7067656990e5966b4626314f225755f (diff) | |
roles: home: migrate old home module to roles
Diffstat (limited to 'roles/home/desktop/picom.nix')
| -rw-r--r-- | roles/home/desktop/picom.nix | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/roles/home/desktop/picom.nix b/roles/home/desktop/picom.nix new file mode 100644 index 0000000..cc72333 --- /dev/null +++ b/roles/home/desktop/picom.nix @@ -0,0 +1,20 @@ +{ ... }: + +{ + services.picom = { + backend = "glx"; + vSync = true; + + settings = { + blur = { + method = "gaussian"; + size = 10; + deviation = 2; + }; + + blur-background-exclude = [ + "window_type = 'dock'" + ]; + }; + }; +} |