···168168169169- The `users.users.<name>.passwordFile` has been renamed to `users.users.<name>.hashedPasswordFile` to avoid possible confusions. The option is in fact the file-based version of `hashedPassword`, not `password`, and expects a file containing the {manpage}`crypt(3)` hash of the user password.
170170171171+- `chromiumBeta` and `chromiumDev` have been removed due to the lack of maintenance in nixpkgs. Consider using `chromium` instead.
172172+173173+- `google-chrome-beta` and `google-chrome-dev` have been removed due to the lack of maintenance in nixpkgs. Consider using `google-chrome` instead.
174174+171175- The `services.ananicy.extraRules` option now has the type of `listOf attrs` instead of `string`.
172176173177- `buildVimPluginFrom2Nix` has been renamed to `buildVimPlugin`, which now
···151151 """Maps a channel name to the corresponding main Nixpkgs attribute name."""
152152 if channel_name == 'stable':
153153 return 'chromium'
154154- if channel_name == 'beta':
155155- return 'chromiumBeta'
156156- if channel_name == 'dev':
157157- return 'chromiumDev'
158154 if channel_name == 'ungoogled-chromium':
159155 return 'ungoogled-chromium'
160156 print(f'Error: Unexpected channel: {channel_name}', file=sys.stderr)
···204200 # If we've already found a newer release for this channel, we're
205201 # no longer interested in it.
206202 if channel_name in channels:
203203+ continue
204204+205205+ # We only look for channels that are listed in our version pin file.
206206+ if channel_name not in last_channels:
207207 continue
208208209209 # If we're back at the last release we used, we don't need to
···134134 chefdk = throw "chefdk has been removed due to being deprecated upstream by Chef Workstation"; # Added 2023-03-22
135135 chocolateDoom = chocolate-doom; # Added 2023-05-01
136136 chrome-gnome-shell = gnome-browser-connector; # Added 2022-07-27
137137+ chromiumBeta = throw "'chromiumBeta' has been removed due to the lack of maintenance in nixpkgs. Consider using 'chromium' instead."; # Added 2023-10-18
138138+ chromiumDev = throw "'chromiumDev' has been removed due to the lack of maintenance in nixpkgs. Consider using 'chromium' instead."; # Added 2023-10-18
137139 citra = citra-nightly; # added 2022-05-17
138140 clang-ocl = throw "'clang-ocl' has been replaced with 'rocmPackages.clang-ocl'"; # Added 2023-10-08
139141 inherit (libsForQt5.mauiPackages) clip; # added 2022-05-17
···317319 godot-headless = throw "godot-headless has been renamed to godot3-headless to distinguish from version 4"; # Added 2023-07-16
318320 godot-server = throw "godot-server has been renamed to godot3-server to distinguish from version 4"; # Added 2023-07-16
319321322322+ google-chrome-beta = throw "'google-chrome-beta' has been removed due to the lack of maintenance in nixpkgs. Consider using 'google-chrome' instead."; # Added 2023-10-18
323323+ google-chrome-dev = throw "'google-chrome-dev' has been removed due to the lack of maintenance in nixpkgs. Consider using 'google-chrome' instead."; # Added 2023-10-18
320324 google-gflags = throw "'google-gflags' has been renamed to/replaced by 'gflags'"; # Converted to throw 2023-09-10
321325 go-thumbnailer = thud; # Added 2023-09-21
322326 gometer = throw "gometer has been removed from nixpkgs because goLance stopped offering Linux support"; # Added 2023-02-10