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

defaults: set screencapture.location's default to null

This commit is contained in:
cmacrae 2018-03-01 13:20:16 +00:00
parent 93f0692422
commit 9a1499b128

View file

@ -6,8 +6,8 @@ with lib;
options = {
system.defaults.screencapture.location = mkOption {
type = types.string;
default = "~/Desktop";
type = types.nullOr types.str;
default = null;
description = ''
The filesystem path to which screencaptures should be written.
'';