summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorNejc Zupan <nejc.zupan@gmail.com>2020-04-12 18:18:46 +0100
committerGitHub <noreply@github.com>2020-04-12 18:18:46 +0100
commita67e6977c4e08348f2534b2a698f408346a6adf8 (patch)
treedc2c6bf1d10aa3640fbbcb8ea8e6740333752c5f /modules
parent053f2cb9cb0ce7ceb4933cbd76e2d28713ad85da (diff)
Add support for system.defaults.screencapture.disable-shadow
Diffstat (limited to 'modules')
-rw-r--r--modules/system/defaults/screencapture.nix8
1 files changed, 8 insertions, 0 deletions
diff --git a/modules/system/defaults/screencapture.nix b/modules/system/defaults/screencapture.nix
index a101c00..1b01049 100644
--- a/modules/system/defaults/screencapture.nix
+++ b/modules/system/defaults/screencapture.nix
@@ -12,5 +12,13 @@ with lib;
The filesystem path to which screencaptures should be written.
'';
};
+
+ system.defaults.screencapture.disable-shadow = mkOption {
+ type = types.bool;
+ default = false;
+ description = ''
+ Disable drop shadow border around screencaptures.
+ '';
+ };
};
}