8.nix-darwin/modules/system/defaults/screencapture.nix
2018-02-27 17:24:45 +00:00

16 lines
285 B
Nix

{ config, lib, ... }:
with lib;
{
options = {
system.defaults.screencapture.location = mkOption {
type = types.string;
default = "~/Desktop";
description = ''
The filesystem path to which screencaptures should be written.
'';
};
};
}