Commit Graph
946286 Commits
Author SHA1 Message Date
oddlama 62c8b5cd08 idmail: 1.0.1 -> 1.0.2 (remove nodePackages dependency) 2026-02-14 12:12:10 +01:00
Gergő GutyinaandGitHub 0bf8400acc xmlformat: 1.9-unstable-2021-09-15 -> 1.9-unstable-2026-02-12 (#490287) 2026-02-14 10:25:36 +00:00
Gergő GutyinaandGitHub 5ee33c746a n8n: 2.6.3 -> 2.6.4 (#489248) 2026-02-14 10:16:50 +00:00
Gergő GutyinaandGitHub 3cd4886b00 wraith: 1.4.10 -> 1.4.10-unstable-2024-03-19 (#478457) 2026-02-14 10:14:30 +00:00
nixpkgs-ci[bot]andGitHub 54ef51b4ba arrow-cpp: move environment variables into env for structuredAttrs (#489960) 2026-02-14 10:13:19 +00:00
nixpkgs-ci[bot]andGitHub 4ad8beb45d kubetui: 1.12.0 -> 1.12.1 (#490338) 2026-02-14 09:58:40 +00:00
zowoqandGitHub 144391594f terraform-providers.buildkite_buildkite: 1.29.0 -> 1.30.0 (#490332) 2026-02-14 09:38:42 +00:00
kirillrdyandGitHub 52858a2447 vllm: move to by-name (#490333) 2026-02-14 09:38:09 +00:00
R. Ryantm f8100530d8 kubetui: 1.12.0 -> 1.12.1 2026-02-14 09:35:21 +00:00
Gaétan LepageandGitHub 6574bbc122 python3Packages.gliner: 0.2.24 -> 0.2.25 (#490325) 2026-02-14 09:34:30 +00:00
nixpkgs-ci[bot]andGitHub 0164f12687 mdserve: 0.5.1 -> 1.0.0 (#490329) 2026-02-14 09:28:47 +00:00
R. RyantmandGaetan Lepage 3551f144c2 python3Packages.gliner: 0.2.24 -> 0.2.25 2026-02-14 09:26:02 +00:00
Gaétan LepageandGitHub bd975a47cf python3Packages.clipman: init at 3.3.3 (#484357) 2026-02-14 09:25:07 +00:00
R. RyantmandMatthias Beyer 94f1abe1fe mdserve: 0.5.1 -> 1.0.0
Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
2026-02-14 10:23:24 +01:00
Gaetan Lepage de77404a5c vllm: move to by-name 2026-02-14 09:21:20 +00:00
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 e0eb0ede72 terraform-providers.buildkite_buildkite: 1.29.0 -> 1.30.0 2026-02-14 09:10:05 +00: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
Bjørn ForsmanandGitHub 2446f57677 libmodbus: 3.1.11 -> 3.1.12 (#490213) 2026-02-14 08:32:14 +00:00
Bobby RongandGitHub d22fe1660f gnome-shell: fix gnome-shell-portal-helper (#485764) 2026-02-14 08:12:56 +00: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
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
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
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
Alexandre Esteves 89991bdff7 ocamlPackages.*: remove myself from maintainers 2026-02-14 05:19:14 +00:00
R. Ryantm 1324d07dac roon-server: 2.58.1608 -> 2.60.1629 2026-02-14 05:18:47 +00:00
Alexandre Esteves 651d452b52 maintainers: update alexfmpe 2026-02-14 05:02:27 +00:00
nixpkgs-ci[bot]andGitHub ade8a1892d basedpyright: 1.37.4 -> 1.38.0 (#489992) 2026-02-14 04:58:25 +00:00
nixpkgs-ci[bot]andGitHub 1584aa7807 s7: 11.7-unstable-2026-02-05 -> 11.7-unstable-2026-02-12 (#489914) 2026-02-14 04:58:23 +00:00
R. Ryantm af671c2312 python3Packages.llama-index-workflows: 2.14.1 -> 2.14.2 2026-02-14 04:56:54 +00:00
Fernando RodriguesandGitHub 8a6aa3c80d cups-brother-mfcl2710dw: init at 4.0.0-1 (#490014) 2026-02-14 04:11:43 +00:00