diff options
| author | Nejc Zupan <nejc.zupan@gmail.com> | 2020-04-12 18:18:46 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-04-12 18:18:46 +0100 |
| commit | a67e6977c4e08348f2534b2a698f408346a6adf8 (patch) | |
| tree | dc2c6bf1d10aa3640fbbcb8ea8e6740333752c5f /modules | |
| parent | 053f2cb9cb0ce7ceb4933cbd76e2d28713ad85da (diff) | |
Add support for system.defaults.screencapture.disable-shadow
Diffstat (limited to 'modules')
| -rw-r--r-- | modules/system/defaults/screencapture.nix | 8 |
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. + ''; + }; }; } |
