mirror of
https://github.com/LnL7/nix-darwin.git
synced 2025-03-09 18:27:00 +00:00
16 lines
312 B
Nix
16 lines
312 B
Nix
|
{ config, lib, ... }:
|
||
|
|
||
|
with lib;
|
||
|
|
||
|
{
|
||
|
options = {
|
||
|
system.defaults.SoftwareUpdate.AutomaticallyInstallMacOSUpdates = mkOption {
|
||
|
type = types.nullOr types.bool;
|
||
|
default = null;
|
||
|
description = ''
|
||
|
Automatically install Mac OS software updates. Defaults to false.
|
||
|
'';
|
||
|
};
|
||
|
};
|
||
|
}
|