1
0
Fork 0
mirror of https://github.com/LnL7/nix-darwin.git synced 2025-03-06 16:57:08 +00:00
nix-darwin/modules/system/defaults/spaces.nix
2019-11-04 14:35:21 +10:00

20 lines
518 B
Nix

{ config, lib, ... }:
with lib;
{
options = {
system.defaults.spaces.spans-displays = mkOption {
type = types.nullOr types.bool;
default = null;
description = ''
# Apple menu > System Preferences > Mission Control
Displays have separate Spaces (note a logout is required before
this setting will take affect).
false = each physical display has a separate space (Mac default)
true = one space spans across all physical displays
'';
};
};
}