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:
commit
54a24f042f
1 changed files with 8 additions and 0 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Reference in a new issue