diff options
Diffstat (limited to 'util/modules/home/picom.nix')
| -rw-r--r-- | util/modules/home/picom.nix | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/util/modules/home/picom.nix b/util/modules/home/picom.nix new file mode 100644 index 0000000..d625200 --- /dev/null +++ b/util/modules/home/picom.nix @@ -0,0 +1,18 @@ +{ ... }: + +{ + services.picom = { + enable = true; + + backend = "glx"; + vSync = true; + + settings = { + blur = { + method = "gaussian"; + size = 10; + deviation = 2; + }; + }; + }; +} |