summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorDaiderd Jordan <daiderd@gmail.com>2020-05-03 16:53:22 +0200
committerGitHub <noreply@github.com>2020-05-03 16:53:22 +0200
commitee2c31205c74da4862e22b33daea256b05856ee8 (patch)
tree3989efa8a7692c1e679d77a8d1b8ebe0bd7d54c1 /modules
parent053f2cb9cb0ce7ceb4933cbd76e2d28713ad85da (diff)
parentc4970fbc4e0a4453490932a638bd97cc33c3f090 (diff)
Merge pull request #190 from zupo/patch-1
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..f7efafd 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.nullOr types.bool;
+ default = null;
+ description = ''
+ Disable drop shadow border around screencaptures. The default is false;
+ '';
+ };
};
}