1
0
Fork 0
mirror of https://github.com/LnL7/nix-darwin.git synced 2025-03-31 04:04:45 +00:00

Add support for system.defaults.screencapture.disable-shadow

This commit is contained in:
Nejc Zupan 2020-04-12 18:18:46 +01:00 committed by GitHub
parent 053f2cb9cb
commit a67e6977c4
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.bool;
default = false;
description = ''
Disable drop shadow border around screencaptures.
'';
};
};
}