diff options
| author | Caroline Larimore <caroline@larimo.re> | 2025-02-07 22:07:51 -0800 |
|---|---|---|
| committer | Caroline Larimore <caroline@larimo.re> | 2025-04-14 18:58:49 -0700 |
| commit | b0478a9dc9121d083e5f568fed203ac9a74e1830 (patch) | |
| tree | ea729e627a7b6d99c123d3d0791d881b9a72314a /roles/home | |
| parent | 78c444ec5e47ac383f1053a208fc7b46113eadfa (diff) | |
migration: picom
Diffstat (limited to 'roles/home')
| -rw-r--r-- | roles/home/desktop/default.nix | 2 | ||||
| -rw-r--r-- | roles/home/desktop/picom.nix | 20 |
2 files changed, 0 insertions, 22 deletions
diff --git a/roles/home/desktop/default.nix b/roles/home/desktop/default.nix index 6c803d3..6ff649f 100644 --- a/roles/home/desktop/default.nix +++ b/roles/home/desktop/default.nix @@ -66,8 +66,6 @@ let cfg = config.home.roles.desktop; in { }; services = { - picom.enable = true; - flameshot.enable = cfg.screenshot; }; diff --git a/roles/home/desktop/picom.nix b/roles/home/desktop/picom.nix deleted file mode 100644 index cc72333..0000000 --- a/roles/home/desktop/picom.nix +++ /dev/null @@ -1,20 +0,0 @@ -{ ... }: - -{ - services.picom = { - backend = "glx"; - vSync = true; - - settings = { - blur = { - method = "gaussian"; - size = 10; - deviation = 2; - }; - - blur-background-exclude = [ - "window_type = 'dock'" - ]; - }; - }; -} |