2022-11-24 23:13:38 +01:00
|
|
|
[[sec-release-23.05]]
|
|
|
|
== Release 23.05
|
|
|
|
|
|
|
|
This is the current unstable branch and the information in this section is therefore not final.
|
|
|
|
|
|
|
|
[[sec-release-23.05-highlights]]
|
|
|
|
=== Highlights
|
|
|
|
|
|
|
|
This release has the following notable changes:
|
|
|
|
|
2023-02-05 23:53:25 +01:00
|
|
|
* Firefox add-ons are now managed per-profile.
|
|
|
|
That is, if you are currently having
|
|
|
|
+
|
|
|
|
[source,nix]
|
|
|
|
programs.firefox.extensions = [ foo bar ];
|
|
|
|
+
|
|
|
|
in your configuration then you must change it to
|
|
|
|
+
|
|
|
|
[source,nix]
|
|
|
|
programs.firefox.profiles.myprofile.extensions = [ foo bar ];
|
2022-11-24 23:13:38 +01:00
|
|
|
|
2023-03-13 23:16:03 +01:00
|
|
|
* The default configuration location has been changed from
|
|
|
|
`~/.config/nixpkgs/home.nix` to `~/.config/home-manager/home.nix`.
|
|
|
|
+
|
|
|
|
Similarly, if you are using a Nix flake based setup
|
|
|
|
then the default flake file location has changed from
|
|
|
|
`~/.config/nixpkgs/flake.nix` to `~/.config/home-manager/flake.nix`.
|
|
|
|
+
|
|
|
|
The old location will continue to work but using it will trigger a warning message.
|
|
|
|
We changed the default configuration location to avoid confusion about
|
|
|
|
which files belong to Home Manager and which belong to Nixpkgs.
|
|
|
|
|
2023-02-26 23:10:06 +01:00
|
|
|
* The `home-manager` tool now offers an `init` command.
|
|
|
|
This command can be used to generate an initial Home Manager configuration,
|
|
|
|
and optionally also activate it.
|
|
|
|
The recommended installation method for a standalone Home Manager setup
|
|
|
|
with Nix flakes uses this new command.
|
|
|
|
The standard installation method remains the same but uses the new command internally.
|
|
|
|
See <<sec-flakes-standalone-unstable>> for more.
|
|
|
|
|
2022-11-24 23:13:38 +01:00
|
|
|
[[sec-release-23.05-state-version-changes]]
|
|
|
|
=== State Version Changes
|
|
|
|
|
|
|
|
The state version in this release includes the changes below.
|
|
|
|
These changes are only active if the `home.stateVersion` option is set to "23.05" or later.
|
|
|
|
|
2023-03-14 21:43:31 +01:00
|
|
|
* The options
|
|
|
|
+
|
|
|
|
--
|
|
|
|
- <<opt-xsession.windowManager.i3.config.window.titlebar>>
|
|
|
|
- <<opt-xsession.windowManager.i3.config.floating.titlebar>>
|
|
|
|
- <<opt-wayland.windowManager.sway.config.window.titlebar>>
|
|
|
|
- <<opt-wayland.windowManager.sway.config.floating.titlebar>>
|
|
|
|
--
|
|
|
|
+
|
2023-02-26 23:10:06 +01:00
|
|
|
now default to `true` which is consistent with the default values for
|
|
|
|
those options used by `i3` and `sway`.
|