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/SoftwareUpdate.nix

16 lines
312 B
Nix
Raw Normal View History

2019-11-04 14:54:31 +10:00
{ config, lib, ... }:
with lib;
{
options = {
system.defaults.SoftwareUpdate.AutomaticallyInstallMacOSUpdates = mkOption {
type = types.nullOr types.bool;
default = null;
2024-04-14 23:02:32 +02:00
description = ''
2019-11-04 14:54:31 +10:00
Automatically install Mac OS software updates. Defaults to false.
'';
};
};
}