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
cherryblossom000 99ff0b66ca
Fix some typos
2021-10-21 20:37:43 +11: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 effect).
false = each physical display has a separate space (Mac default)
true = one space spans across all physical displays
'';
};
};
}