Unverified Commit 300eaad1 authored by Vladimír Čunát's avatar Vladimír Čunát
Browse files

Merge branch 'master' into staging-next

parents bc6f47f6 b874fb56
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -29,12 +29,12 @@ _Note: each language passed to `langs` must be an attribute name in `pkgs.hunspe

## Built-in emoji picker {#sec-ibus-typing-booster-emoji-picker}

The `ibus-engines.typing-booster` package contains a program named `emoji-picker`. To display all emojis correctly, a special font such as `noto-fonts-emoji` is needed:
The `ibus-engines.typing-booster` package contains a program named `emoji-picker`. To display all emojis correctly, a special font such as `noto-fonts-color-emoji` is needed:

On NixOS, it can be installed using the following expression:

```nix
{ pkgs, ... }: {
  fonts.packages = with pkgs; [ noto-fonts-emoji ];
  fonts.packages = with pkgs; [ noto-fonts-color-emoji ];
}
```
+12 −6
Original line number Diff line number Diff line
@@ -876,6 +876,12 @@
    githubId = 153175;
    name = "Andrew Marshall";
  };
  amaxine = {
    email = "max@ine.dev";
    github = "amaxine";
    githubId = 35892750;
    name = "Maxine Aubrey";
  };
  ambroisie = {
    email = "bruno.nixpkgs@belanyi.fr";
    github = "ambroisie";
@@ -10328,6 +10334,12 @@
    githubId = 782440;
    name = "Luna Nova";
  };
  luochen1990 = {
    email = "luochen1990@gmail.com";
    github = "luochen1990";
    githubId = 2309868;
    name = "Luo Chen";
  };
  lurkki = {
    email = "jussi.kuokkanen@protonmail.com";
    github = "Lurkki14";
@@ -10879,12 +10891,6 @@
    githubId = 502805;
    name = "Max Zerzouri";
  };
  maxeaubrey = {
    email = "maxeaubrey@gmail.com";
    github = "maxeaubrey";
    githubId = 35892750;
    name = "Maxine Aubrey";
  };
  maxhbr = {
    email = "nixos@maxhbr.dev";
    github = "maxhbr";
+5 −4
Original line number Diff line number Diff line
@@ -102,12 +102,13 @@ def convert_to_throw(date_older_list: list[str]) -> list[tuple[str, str]]:

        alias = before_equal
        alias_unquoted = before_equal.strip('"')
        after_equal_list = [x.strip(";:") for x in after_equal.split()]
        replacement = next(x.strip(";:") for x in after_equal.split())
        replacement = replacement.removeprefix("pkgs.")

        converted = (
            f"{indent}{alias} = throw \"'{alias_unquoted}' has been renamed to/replaced by"
            f" '{after_equal_list.pop(0)}'\";"
            f' # Converted to throw {datetime.today().strftime("%Y-%m-%d")}'
            f"{indent}{alias} = throw \"'{alias_unquoted}' has been"
            f" renamed to/replaced by '{replacement}'\";"
            f" # Converted to throw {datetime.today().strftime('%Y-%m-%d')}"
        )
        converted_list.append((line, converted))

+13 −1
Original line number Diff line number Diff line
@@ -365,7 +365,7 @@ with lib.maintainers; {
      hedning
      jtojnar
      dasj19
      maxeaubrey
      amaxine
    ];
    githubTeams = [
      "gnome"
@@ -918,6 +918,18 @@ with lib.maintainers; {
    shortName = "Vim/Neovim";
  };

  wdz = {
    members = [
      n0emis
      netali
      vidister
      johannwagner
      yuka
    ];
    scope = "Group registration for WDZ GmbH team members who collectively maintain packages.";
    shortName = "WDZ GmbH";
  };

  xfce = {
    members = [
      bobby285271
+4 −0
Original line number Diff line number Diff line
@@ -193,6 +193,10 @@

- The `hail` NixOS module was removed, as `hail` was unmaintained since 2017.

- Package `noto-fonts-emoji` was renamed to `noto-fonts-color-emoji`;
  see [#221181](https://github.com/NixOS/nixpkgs/issues/221181).


## Other Notable Changes {#sec-release-23.11-notable-changes}

- The Cinnamon module now enables XDG desktop integration by default. If you are experiencing collisions related to xdg-desktop-portal-gtk you can safely remove `xdg.portal.extraPortals = [ pkgs.xdg-desktop-portal-gtk ];` from your NixOS configuration.
Loading