1
0
Fork 0
mirror of https://github.com/LnL7/nix-darwin.git synced 2024-12-14 11:57:34 +00:00

Merge pull request #190 from zupo/patch-1

Add support for system.defaults.screencapture.disable-shadow
This commit is contained in:
Daiderd Jordan 2020-05-03 16:53:22 +02:00 committed by GitHub
commit ee2c31205c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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;
'';
};
};
}