···3233- Julia environments can now be built with arbitrary packages from the ecosystem using the `.withPackages` function. For example: `julia.withPackages ["Plots"]`.
340000035- A new option `systemd.sysusers.enable` was added. If enabled, users and
36 groups are created with systemd-sysusers instead of with a custom perl script.
37
···3233- Julia environments can now be built with arbitrary packages from the ecosystem using the `.withPackages` function. For example: `julia.withPackages ["Plots"]`.
3435+- The PipeWire and WirePlumber modules have removed support for using
36+`environment.etc."pipewire/..."` and `environment.etc."wireplumber/..."`.
37+Use `services.pipewire.extraConfig` or `services.pipewire.configPackages` for PipeWire and
38+`services.pipewire.wireplumber.configPackages` for WirePlumber instead."
39+40- A new option `systemd.sysusers.enable` was added. If enabled, users and
41 groups are created with systemd-sysusers instead of with a custom perl script.
42
···31 doCheck = true;
32 nativeCheckInputs = [ lua51Packages.busted util-linux neovim ];
33 # filter out one test that fails in the sandbox of nix
34- checkPhase = ''
0035 runHook preCheck
36- make test BUSTED='busted --output TAP --exclude-tags=nix'
37 runHook postCheck
38 '';
3940 meta = with lib; {
41- broken = stdenv.isDarwin;
42 description = "Use neovim as pager";
43 longDescription = ''
44 Use neovim as a pager to view manpages, diffs, etc with nvim's syntax
···31 doCheck = true;
32 nativeCheckInputs = [ lua51Packages.busted util-linux neovim ];
33 # filter out one test that fails in the sandbox of nix
34+ checkPhase = let
35+ exclude-tags = if stdenv.isDarwin then "nix,mac" else "nix";
36+ in ''
37 runHook preCheck
38+ make test BUSTED='busted --output TAP --exclude-tags=${exclude-tags}'
39 runHook postCheck
40 '';
4142 meta = with lib; {
043 description = "Use neovim as pager";
44 longDescription = ''
45 Use neovim as a pager to view manpages, diffs, etc with nvim's syntax