···269269270270- `tauon` 7.9.0+ when launched for the first time, migrates its database to a new schema that is not backwards compatible. Older versions will refuse to start at all with that database afterwards. If you need to still use older tauon versions, make sure to back up `~/.local/share/TauonMusicBox`.
271271272272+- `aws-workspaces` has dropped support for PCoiP networking.
273273+272274- The `earlyoom` service is now using upstream systemd service, which enables
273275 hardening and filesystem isolation by default. If you need filesystem write
274276 access or want to access home directory via `killHook`, hardening setting can
+2-2
nixos/modules/services/hardware/bluetooth.nix
···143143 {
144144 wantedBy = [ "bluetooth.target" ];
145145 aliases = [ "dbus-org.bluez.service" ];
146146+ # restarting can leave people without a mouse/keyboard
147147+ restartIfChanged = false;
146148 serviceConfig = {
147149 ExecStart = [
148150 ""
···171173172174 PrivateNetwork = false; # tethering
173175 };
174174- # restarting can leave people without a mouse/keyboard
175175- unitConfig.X-RestartIfChanged = false;
176176 };
177177 }
178178 // (optionalAttrs cfg.hsphfpd.enable {
+10
nixos/modules/services/security/kanidm.nix
···563563 default = null;
564564 };
565565566566+ imageFile = mkOption {
567567+ description = ''
568568+ Application image to display in the WebUI.
569569+ Kanidm supports "image/jpeg", "image/png", "image/gif", "image/svg+xml", and "image/webp".
570570+ The image will be uploaded each time kanidm-provision is run.
571571+ '';
572572+ type = types.nullOr types.path;
573573+ default = null;
574574+ };
575575+566576 enableLocalhostRedirects = mkOption {
567577 description = "Allow localhost redirects. Only for public clients.";
568578 type = types.bool;