mirror of
https://github.com/LnL7/nix-darwin.git
synced 2024-12-15 17:51:01 +00:00
21 lines
517 B
Nix
21 lines
517 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 effect).
|
|
|
|
false = each physical display has a separate space (Mac default)
|
|
true = one space spans across all physical displays
|
|
'';
|
|
};
|
|
};
|
|
}
|