- The `openlens` package got removed, suggested replacment `lens-desktop`
- The `services.dnsmasq.extraConfig` option has been removed, as it had been deprecated for over 2 years. This option has been replaced by `services.dnsmasq.settings`.
- The NixOS installation media no longer support the ReiserFS or JFS file systems by default.
- Minimal installer ISOs are no longer built on the small channel.
(lib.mkRemovedOptionModule["services""dnsmasq""extraConfig"]"This option has been replaced by `services.dnsmasq.settings`")
];
###### interface
@@ -104,17 +99,6 @@ in
'';
};
extraConfig=lib.mkOption{
type=lib.types.lines;
default="";
description=''
Extra configuration directives that should be added to
`dnsmasq.conf`.
This option is deprecated, please use {option}`settings` instead.
'';
};
};
};
@@ -124,8 +108,6 @@ in
config=lib.mkIfcfg.enable{
warnings=lib.optional(cfg.extraConfig!="")"Text based config is deprecated, dnsmasq now supports `services.dnsmasq.settings` for an attribute-set based config";