···9697- `services.outline.sequelizeArguments` has been removed, as `outline` no longer executes database migrations via the `sequelize` cli.
980099- 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.
100101- 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.
···9697- `services.outline.sequelizeArguments` has been removed, as `outline` no longer executes database migrations via the `sequelize` cli.
9899+- The binary of the package `cloud-sql-proxy` has changed from `cloud_sql_proxy` to `cloud-sql-proxy`.
100+101- 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.
102103- 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
···19 pkgs.qgnomeplatform-qt6
20 pkgs.adwaita-qt6
21 ]
22- else if isQtStyle then [ pkgs.libsForQt5.qtstyleplugins ]
23 else if isQt5ct then [ pkgs.libsForQt5.qt5ct pkgs.qt6Packages.qt6ct ]
24 else if isLxqt then [ pkgs.lxqt.lxqt-qtplugin pkgs.lxqt.lxqt-config ]
25 else if isKde then [ pkgs.libsForQt5.plasma-integration pkgs.libsForQt5.systemsettings ]
···86 "adwaita-qt"
87 "adwaita-qt6"
88 ["libsForQt5" "qtstyleplugins"]
089 ];
90 description = lib.mdDoc ''
91 Selects the style to use for Qt applications.
···19 pkgs.qgnomeplatform-qt6
20 pkgs.adwaita-qt6
21 ]
22+ else if isQtStyle then [ pkgs.libsForQt5.qtstyleplugins pkgs.qt6Packages.qt6gtk2 ]
23 else if isQt5ct then [ pkgs.libsForQt5.qt5ct pkgs.qt6Packages.qt6ct ]
24 else if isLxqt then [ pkgs.lxqt.lxqt-qtplugin pkgs.lxqt.lxqt-config ]
25 else if isKde then [ pkgs.libsForQt5.plasma-integration pkgs.libsForQt5.systemsettings ]
···86 "adwaita-qt"
87 "adwaita-qt6"
88 ["libsForQt5" "qtstyleplugins"]
89+ ["qt6Packages" "qt6gtk2"]
90 ];
91 description = lib.mdDoc ''
92 Selects the style to use for Qt applications.
···69 VM name
70 '';
71 };
72+ additionalSpace = mkOption {
73+ type = types.str;
74+ default = "512M";
75+ example = "2048M";
76+ description = lib.mdDoc ''
77+ additional disk space to be added to the image if diskSize "auto"
78+ is used.
79+ '';
80+ };
81+ bootSize = mkOption {
82+ type = types.str;
83+ default = "256M";
84+ example = "512M";
85+ description = lib.mdDoc ''
86+ Size of the boot partition. Is only used if partitionTableType is
87+ either "efi" or "hybrid".
88+ '';
89+ };
90+ diskSize = mkOption {
91+ type = types.str;
92+ default = "auto";
93+ example = "20480";
94+ description = lib.mdDoc ''
95+ The size of the disk, in megabytes.
96+ if "auto" size is calculated based on the contents copied to it and
97+ additionalSpace is taken into account.
98+ '';
99+ };
100 net0 = mkOption {
101 type = types.commas;
102 default = "virtio=00:00:00:00:00:00,bridge=vmbr0,firewall=1";
···264 mkdir -p $out/nix-support
265 echo "file vma $out/vzdump-qemu-${cfg.filenameSuffix}.vma.zst" >> $out/nix-support/hydra-build-products
266 '';
267+ inherit (cfg.qemuConf) additionalSpace diskSize bootSize;
268 format = "raw";
269 inherit config lib pkgs;
270 };