summaryrefslogtreecommitdiff
path: root/modules/system
diff options
context:
space:
mode:
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;
'';
};
};