···96969797- `services.outline.sequelizeArguments` has been removed, as `outline` no longer executes database migrations via the `sequelize` cli.
98989999+- The binary of the package `cloud-sql-proxy` has changed from `cloud_sql_proxy` to `cloud-sql-proxy`.
100100+99101- The Caddy module gained a new option named `services.caddy.enableReload` which is enabled by default. It allows reloading the service instead of restarting it, if only a config file has changed. This option must be disabled if you have turned off the [Caddy admin API](https://caddyserver.com/docs/caddyfile/options#admin). If you keep this option enabled, you should consider setting [`grace_period`](https://caddyserver.com/docs/caddyfile/options#grace-period) to a non-infinite value to prevent Caddy from delaying the reload indefinitely.
100102101103- mdraid support is now optional. This reduces initramfs size and prevents the potentially undesired automatic detection and activation of software RAID pools. It is disabled by default in new configurations (determined by `stateVersion`), but the appropriate settings will be generated by `nixos-generate-config` when installing to a software RAID device, so the standard installation procedure should be unaffected. If you have custom configs relying on mdraid, ensure that you use `stateVersion` correctly or set `boot.swraid.enable` manually.
+2-1
nixos/modules/config/qt.nix
···1919 pkgs.qgnomeplatform-qt6
2020 pkgs.adwaita-qt6
2121 ]
2222- else if isQtStyle then [ pkgs.libsForQt5.qtstyleplugins ]
2222+ else if isQtStyle then [ pkgs.libsForQt5.qtstyleplugins pkgs.qt6Packages.qt6gtk2 ]
2323 else if isQt5ct then [ pkgs.libsForQt5.qt5ct pkgs.qt6Packages.qt6ct ]
2424 else if isLxqt then [ pkgs.lxqt.lxqt-qtplugin pkgs.lxqt.lxqt-config ]
2525 else if isKde then [ pkgs.libsForQt5.plasma-integration pkgs.libsForQt5.systemsettings ]
···8686 "adwaita-qt"
8787 "adwaita-qt6"
8888 ["libsForQt5" "qtstyleplugins"]
8989+ ["qt6Packages" "qt6gtk2"]
8990 ];
9091 description = lib.mdDoc ''
9192 Selects the style to use for Qt applications.
+29
nixos/modules/virtualisation/proxmox-image.nix
···6969 VM name
7070 '';
7171 };
7272+ additionalSpace = mkOption {
7373+ type = types.str;
7474+ default = "512M";
7575+ example = "2048M";
7676+ description = lib.mdDoc ''
7777+ additional disk space to be added to the image if diskSize "auto"
7878+ is used.
7979+ '';
8080+ };
8181+ bootSize = mkOption {
8282+ type = types.str;
8383+ default = "256M";
8484+ example = "512M";
8585+ description = lib.mdDoc ''
8686+ Size of the boot partition. Is only used if partitionTableType is
8787+ either "efi" or "hybrid".
8888+ '';
8989+ };
9090+ diskSize = mkOption {
9191+ type = types.str;
9292+ default = "auto";
9393+ example = "20480";
9494+ description = lib.mdDoc ''
9595+ The size of the disk, in megabytes.
9696+ if "auto" size is calculated based on the contents copied to it and
9797+ additionalSpace is taken into account.
9898+ '';
9999+ };
72100 net0 = mkOption {
73101 type = types.commas;
74102 default = "virtio=00:00:00:00:00:00,bridge=vmbr0,firewall=1";
···236264 mkdir -p $out/nix-support
237265 echo "file vma $out/vzdump-qemu-${cfg.filenameSuffix}.vma.zst" >> $out/nix-support/hydra-build-products
238266 '';
267267+ inherit (cfg.qemuConf) additionalSpace diskSize bootSize;
239268 format = "raw";
240269 inherit config lib pkgs;
241270 };