summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorNatasha Moongrave <natasha@256phi.eu>2026-02-01 23:27:42 +0100
committerNatasha Moongrave <natasha@256phi.eu>2026-02-01 23:27:42 +0100
commit698243c683e462323713d0a47fe4837ef410c727 (patch)
treead739952f78901d05647ba7340ea209077db4b3e /modules
parentda3f42a17e5bc2a397d3b3cd49d34af5dea9a021 (diff)
fixed syntax error picom.nix
Diffstat (limited to 'modules')
-rw-r--r--modules/home/i3wm/original/picom.nix35
1 files changed, 17 insertions, 18 deletions
diff --git a/modules/home/i3wm/original/picom.nix b/modules/home/i3wm/original/picom.nix
index 84b49a7..d5f460f 100644
--- a/modules/home/i3wm/original/picom.nix
+++ b/modules/home/i3wm/original/picom.nix
@@ -2,24 +2,23 @@
{
services.picom = {
- enable = true;
- backend = "glx";
- vSync = true;
- inactiveOpacity = 0.9;
- activeOpacity = 1.0;
- fade = true;
- fadeSteps = [ 0.09 0.09 ];
- fadeDelta = 5;
- shadow = true;
- shadowOffsets = [ 12 12 ];
- shadowOpacity = 0.5;
- shadowExclude = [
- "class_g = 'Polybar'"
- "name = 'Polybar'"
- ];
- settings = {
- corner-radius = 15;
- };
+ enable = true;
+ backend = "glx";
+ vSync = true;
+ inactiveOpacity = 0.9;
+ activeOpacity = 1.0;
+ fade = true;
+ fadeSteps = [ 0.09 0.09 ];
+ fadeDelta = 5;
+ shadow = true;
+ shadowOffsets = [ 12 12 ];
+ shadowOpacity = 0.5;
+ shadowExclude = [
+ "class_g = 'Polybar'"
+ "name = 'Polybar'"
+ ];
+ settings = {
+ corner-radius = 15;
};
};
} \ No newline at end of file