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

21 lines
518 B
Nix
Raw Normal View History

2019-11-04 14:06:54 +10:00
{ 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
2021-10-21 20:36:55 +11:00
this setting will take effect).
2019-11-04 14:06:54 +10:00
false = each physical display has a separate space (Mac default)
true = one space spans across all physical displays
'';
};
};
}