summaryrefslogtreecommitdiff
path: root/modules/system
diff options
context:
space:
mode:
authorNejc Zupan <nejc.zupan@gmail.com>2020-04-12 18:21:07 +0100
committerGitHub <noreply@github.com>2020-04-12 18:21:07 +0100
commitc4970fbc4e0a4453490932a638bd97cc33c3f090 (patch)
tree3989efa8a7692c1e679d77a8d1b8ebe0bd7d54c1 /modules/system
parenta67e6977c4e08348f2534b2a698f408346a6adf8 (diff)
Be nicer
Diffstat (limited to 'modules/system')
-rw-r--r--modules/system/defaults/screencapture.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/system/defaults/screencapture.nix b/modules/system/defaults/screencapture.nix
index 1b01049..f7efafd 100644
--- a/modules/system/defaults/screencapture.nix
+++ b/modules/system/defaults/screencapture.nix
@@ -14,10 +14,10 @@ with lib;
};
system.defaults.screencapture.disable-shadow = mkOption {
- type = types.bool;
- default = false;
+ type = types.nullOr types.bool;
+ default = null;
description = ''
- Disable drop shadow border around screencaptures.
+ Disable drop shadow border around screencaptures. The default is false;
'';
};
};