mirror of
https://github.com/LnL7/nix-darwin.git
synced 2024-12-15 17:51:01 +00:00
5f141365af
Also remove `nix.version` option since it's no longer being used anywhere, old irrelevant `nix-info` module, and all support for legacy `nix.profile` option.
36 lines
1.4 KiB
Nix
36 lines
1.4 KiB
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
let
|
|
|
|
in
|
|
|
|
{
|
|
options = {
|
|
|
|
networking.networkservices = mkOption { internal = true; default = null; };
|
|
security.enableAccessibilityAccess = mkOption { internal = true; default = null; };
|
|
security.accessibilityPrograms = mkOption { internal = true; default = null; };
|
|
|
|
};
|
|
|
|
config = {
|
|
|
|
assertions =
|
|
[ { assertion = config.security.enableAccessibilityAccess == null; message = "security.enableAccessibilityAccess was removed, it's broken since 10.12 because of SIP"; }
|
|
{ assertion = config.system.activationScripts.extraPostActivation.text == ""; message = "system.activationScripts.extraPostActivation was renamed to system.activationScripts.postActivation"; }
|
|
{ assertion = config.system.activationScripts.extraUserPostActivation.text == ""; message = "system.activationScripts.extraUserPostActivation was renamed to system.activationScripts.postUserActivation"; }
|
|
];
|
|
|
|
warnings = mkIf (config.networking.networkservices != null) [
|
|
"networking.networkservices was renamed to networking.knownNetworkServices"
|
|
];
|
|
|
|
networking.knownNetworkServices = mkIf (config.networking.networkservices != null) config.networking.networkservices;
|
|
|
|
system.activationScripts.extraPostActivation.text = mkDefault "";
|
|
system.activationScripts.extraUserPostActivation.text = mkDefault "";
|
|
|
|
};
|
|
}
|