1
0
Fork 0
mirror of https://github.com/LnL7/nix-darwin.git synced 2025-03-06 08:47:00 +00:00
nix-darwin/modules/system/defaults/SoftwareUpdate.nix
2024-04-19 04:05:50 +02:00

15 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.
'';
};
};
}