aboutsummaryrefslogtreecommitdiff
path: root/snowfall/modules/home/apps/picom/default.nix
diff options
context:
space:
mode:
authorCaroline Larimore <caroline@larimo.re>2025-02-08 13:00:35 -0800
committerCaroline Larimore <caroline@larimo.re>2025-04-14 18:58:50 -0700
commit1679fced2ecd5d2d2a78e5ccfe747273dbf3f5cb (patch)
tree24bf5016b939734cb292d9352bcdbefbe33d1906 /snowfall/modules/home/apps/picom/default.nix
parentbd43b5fa64235b2145cdeeb7409cd11636e7754e (diff)
migration: reclassify some apps as desktop components
Diffstat (limited to 'snowfall/modules/home/apps/picom/default.nix')
-rw-r--r--snowfall/modules/home/apps/picom/default.nix32
1 files changed, 0 insertions, 32 deletions
diff --git a/snowfall/modules/home/apps/picom/default.nix b/snowfall/modules/home/apps/picom/default.nix
deleted file mode 100644
index 0aac934..0000000
--- a/snowfall/modules/home/apps/picom/default.nix
+++ /dev/null
@@ -1,32 +0,0 @@
-{ options, config, lib, namespace, ... }:
-
-#TODO: move somewhere else
-# most likely will move several things into modules/desktop/components or similar
-with lib; with lib.${namespace}; let
- cfg = config.${namespace}.apps.picom;
-in {
- options.${namespace}.apps.picom = with types; {
- enable = mkEnableOption "picom";
- };
-
- config = mkIf cfg.enable {
- services.picom = {
- enable = true;
-
- backend = "glx";
- vSync = true;
-
- settings = {
- blur = {
- method = "gaussian";
- size = 10;
- deviation = 2;
- };
-
- blur-background-exclude = [
- "window_type = 'dock'"
- ];
- };
- };
- };
-}