Commit Graph
948725 Commits
Author SHA1 Message Date
StigandGitHub 8312ea654a hongdown: init at 0.3.2 (#478761) 2026-02-14 09:19:40 +00:00
Gaétan LepageandGitHub 683f932c85 vllm: unpin from python 3.12 (#490322) 2026-02-14 09:15:24 +00:00
R. Ryantm e34b1819bf python3Packages.llguidance: 1.5.0 -> 1.5.1 2026-02-14 09:13:47 +00:00
R. Ryantm d552490dd7 eksctl: 0.222.0 -> 0.223.0 2026-02-14 09:11:03 +00:00
R. Ryantm e0eb0ede72 terraform-providers.buildkite_buildkite: 1.29.0 -> 1.30.0 2026-02-14 09:10:05 +00:00
Bobby Rong 1af54a32ad papers: 49.3 → 49.4
https://gitlab.gnome.org/GNOME/papers/-/compare/49.3...49.4
2026-02-14 17:08:42 +08:00
Bobby Rong d09e32a667 nautilus: 49.3 → 49.4
https://gitlab.gnome.org/GNOME/nautilus/-/compare/49.3...49.4
2026-02-14 17:08:42 +08:00
Bobby Rong a17fff3e1e mutter: 49.3 → 49.4
https://gitlab.gnome.org/GNOME/mutter/-/compare/49.3...49.4
2026-02-14 17:08:42 +08:00
Bobby Rong 709508ca6e libglycin: 2.0.7 → 2.0.8
https://gitlab.gnome.org/GNOME/glycin/-/compare/2.0.7...2.0.8
2026-02-14 17:08:42 +08:00
Bobby Rong 1d0607fa71 gthumb: 3.12.9 → 3.12.10
https://gitlab.gnome.org/GNOME/gthumb/-/compare/3.12.9...3.12.10
2026-02-14 17:08:42 +08:00
Bobby Rong a39e018e66 gnome-shell: 49.3 → 49.4
https://gitlab.gnome.org/GNOME/gnome-shell/-/compare/49.3...49.4
2026-02-14 17:08:42 +08:00
Fabian AffolterandGitHub bea7b4f33b python3Packages.llama-index-workflows: 2.14.1 -> 2.14.2 (#490300) 2026-02-14 08:56:17 +00:00
Fabian AffolterandGitHub c549d0cf0a grype: 0.105.0 -> 0.108.0 (#490195) 2026-02-14 08:55:25 +00:00
nixpkgs-ci[bot]andGitHub 9b2d8ae117 git-absorb: 0.8.0 -> 0.9.0 (#490320) 2026-02-14 08:55:00 +00:00
nixpkgs-ci[bot]andGitHub 93d109b647 cargo-nextest: 0.9.126 -> 0.9.127 (#490200) 2026-02-14 08:54:13 +00:00
nixpkgs-ci[bot]andGitHub 0c86b5b81d cargo-insta: 1.45.1 -> 1.46.3 (#490196) 2026-02-14 08:54:11 +00:00
Fabian AffolterandGitHub 7c34a754bf python314Packages.boto3-stubs: 1.42.47 -> 1.42.48 (#490040) 2026-02-14 08:53:21 +00:00
Fabian AffolterandGitHub f9b8c70f9f python313Packages.iamdata: 0.1.202602121 -> 0.1.202602131 (#490039) 2026-02-14 08:53:16 +00:00
R. Ryantm 5dd1ff1be4 podman: 5.7.1 -> 5.8.0 2026-02-14 08:46:21 +00:00
Bobby Rong 4a2b8c43e9 gnome-online-accounts: 3.56.3 → 3.56.4
https://gitlab.gnome.org/GNOME/gnome-online-accounts/-/compare/3.56.3...3.56.4
2026-02-14 16:44:49 +08:00
Bjørn ForsmanandGitHub 2446f57677 libmodbus: 3.1.11 -> 3.1.12 (#490213) 2026-02-14 08:32:14 +00:00
Wulfsta f3ceed11e1 libfive: migrate to by-name 2026-02-14 03:16:06 -05:00
Bobby RongandGitHub d22fe1660f gnome-shell: fix gnome-shell-portal-helper (#485764) 2026-02-14 08:12:56 +00:00
Bobby Rong 3075e60eb4 gnome-desktop: 44.4 → 44.5
https://gitlab.gnome.org/GNOME/gnome-desktop/-/compare/44.4...44.5
2026-02-14 16:11:19 +08:00
Luke SandellandBobby Rong 770d2796ed gnome-shell: fix gnome-shell-portal-helper
Add `webkitgtk_6_0` typelib needed by `gnome-shell-portal-helper`.

When NetworkManager connectivity check is enabled, GNOME will pop up a notification when a captive portal is detected. Clicking the notification _should_ launch a WebKit browser window allowing you to log in to the network. Without including the typelib, this fails with the following error in the journal: `JS ERROR: Error: Requiring WebKit, version 6.0: Typelib file for namespace 'WebKit', version '6.0' not found`.

You can enable NetworkManager connectivity checks with the following NixOS config:

```nix
networking = {
  networkmanager = {
    enable = true;
    settings = {
      connectivity = {
        enabled = true;
        uri = "http://nmcheck.gnome.org/check_network_status.txt";
        interval = 300;
      };
    };
  };
};
```

To test this, you need to connect to a public WiFi that requires clicking through a log in page or simulate a captive portal in some other way. You can also test launching the authentication window directly with a script similar to the following. This will not work prior to the fix.

```bash

gdbus call --session \
  --dest org.gnome.Shell.PortalHelper \
  --object-path /org/gnome/Shell/PortalHelper \
  --method org.gnome.Shell.PortalHelper.Close \
  "/org/freedesktop/NetworkManager/ActiveConnection/1"

gdbus call --session \
  --dest org.gnome.Shell.PortalHelper \
  --object-path /org/gnome/Shell/PortalHelper \
  --method org.gnome.Shell.PortalHelper.Authenticate \
  "/org/freedesktop/NetworkManager/ActiveConnection/1" \
  "http://example.com" \
  0
```
2026-02-14 16:06:42 +08:00
Jared BaurandGitHub c164480717 switch-to-configuration-ng: use libsystemd in place of calling systemd-escape (#490184) 2026-02-14 07:51:50 +00:00
Wulfsta 2d9ec18da3 vllm: unpin from python 3.12 2026-02-14 02:42:02 -05:00
Pol DellaieraandGitHub f08307640e fresh-editor: 0.2.1 -> 0.2.3 (#490219) 2026-02-14 07:41:38 +00:00
R. Ryantm c9837d54e4 git-absorb: 0.8.0 -> 0.9.0 2026-02-14 07:16:31 +00:00
Bobby RongandGitHub 55d13701eb Mate toplevel (#488488) 2026-02-14 07:09:35 +00:00
nixpkgs-ci[bot]andGitHub ea10c59eb6 roon-server: 2.58.1608 -> 2.60.1629 (#490303) 2026-02-14 07:08:16 +00:00
Bobby Rong d14afe8009 .github/labeler.yml: update mate package paths
To not bloat the list only core packages for now.
2026-02-14 15:05:02 +08:00
R. Ryantm 9c09baf475 vscode-extensions.saoudrizwan.claude-dev: 3.57.1 -> 3.62.0 2026-02-14 06:50:40 +00:00
R. Ryantm b77155e84f python3Packages.boschshcpy: 0.2.109 -> 0.2.111 2026-02-14 06:46:13 +00:00
Bobby Rong 4797e6471b mate: move aliases back to scope
Ensure the warnings are shown on `nixos-rebuild`s.
2026-02-14 14:33:48 +08:00
Bobby Rong ffe8b46fec mate.{cajaExtensions,panelApplets}: drop
Moved to corresponding packages.
2026-02-14 14:29:09 +08:00
Bobby Rong 565e31ff9e mate.mateUpdateScript: drop
Not used.
2026-02-14 14:22:21 +08:00
Bobby Rong 5dc27a087f mate.{base,extra}Packages: drop
Moved to nixos module.
2026-02-14 14:20:25 +08:00
nixpkgs-ci[bot]andGitHub c32673103b Merge master into staging-nixos 2026-02-14 06:16:08 +00:00
Bobby RongandGitHub 9a09eea96b cinnamon-session: 6.6.2 -> 6.6.3 (#490137) 2026-02-14 05:56:36 +00:00
dotlambdaandGitHub fd14215e02 leptonica: 1.85.0 -> 1.87.0 (#445211) 2026-02-14 05:54:35 +00:00
R. Ryantm 091859c3b5 mackup: 0.10.1 -> 0.10.2 2026-02-14 05:44:40 +00:00
R. Ryantm 3304382a46 libretro.np2kai: 0-unstable-2026-02-01 -> 0-unstable-2026-02-08 2026-02-14 05:44:27 +00:00
R. Ryantm 94604c3676 nu_scripts: 0-unstable-2026-02-05 -> 0-unstable-2026-02-12 2026-02-14 05:35:09 +00:00
Yujonpradhananga 065f20904f lnreader: init at 1.0 2026-02-14 11:15:49 +05:45
Robert Schütz 20cf407900 home-assistant.python.pkgs.pytest-homeassistant-custom-component: 0.13.314 -> 0.13.315
Diff: https://github.com/MatthewFlamm/pytest-homeassistant-custom-component/compare/0.13.314...0.13.315

Changelog: https://github.com/MatthewFlamm/pytest-homeassistant-custom-component/blob/0.13.315/CHANGELOG.md
2026-02-13 21:29:10 -08:00
Fernando RodriguesandGitHub 7d72518ca1 maintainers: update alexfmpe (#490301) 2026-02-14 05:28:11 +00:00
Fernando RodriguesandGitHub 002eaa9962 ocamlPackages.*: remove myself from maintainers (#490302) 2026-02-14 05:27:08 +00:00
Yujonpradhananga a28722247c maintainers: add yujonpradhananga 2026-02-14 11:08:04 +05:45
Alexandre Esteves 89991bdff7 ocamlPackages.*: remove myself from maintainers 2026-02-14 05:19:14 +00:00