1
0
Fork 0
mirror of https://github.com/LnL7/nix-darwin.git synced 2025-03-13 20:30:02 +00:00

Merge pull request #476 from dstcruz/ScreencaptureType

Add option to set com.apple.screencapture type
This commit is contained in:
Domen Kožar 2022-07-14 16:56:55 -05:00 committed by GitHub
commit 54a24f042f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -13,6 +13,14 @@ with lib;
'';
};
system.defaults.screencapture.type = mkOption {
type = types.nullOr types.str;
default = null;
description = ''
The image format to use, such as "jpg".
'';
};
system.defaults.screencapture.disable-shadow = mkOption {
type = types.nullOr types.bool;
default = null;