595 Commits
Author SHA1 Message Date
Ben Siraphob 062d2b697e pkgs: fix typos in applications, data, desktops, games and misc
Assisted-by: Claude Code (claude-opus-5)
2026-08-02 11:15:27 -07:00
winston b74cf98da8 gnomeExtensions.user-themes-x: add patch for libglycin{,-gtk4} 2026-07-21 17:49:46 +02:00
winston 4e626fe7e5 gnomeExtensions: drop unmaintained extensions 2026-07-21 17:49:45 +02:00
winston ae3ee2881e gnomeExtensions.unite: 84 -> 85 2026-07-21 13:20:46 +02:00
winston 378aa2aeaa gnomeExtensions.impatience: 0.5.3-unstable-2025-10-06 -> 0.5.3-unstable-2026-03-11 2026-07-21 13:20:46 +02:00
winston 31a9a16659 gnomeExtensions.guillotine: 26 -> 27-unstable-2026-04-08 2026-07-21 13:20:45 +02:00
winston f8e9d6cf64 gnomeExtensions.argos: unstable-2025-09-25 -> 50 2026-07-21 13:20:45 +02:00
winston 127f6348f8 gnomeExtensions.easyScreenCast: 1.12.0 -> 1.13.2 2026-07-21 13:20:44 +02:00
winston 766cbd5238 gnomeExtensions.desktop-icons-ng-ding: update patch 2026-07-21 13:20:44 +02:00
winston 3365007706 gnomeExtensions.system-monitor-next: update patch 2026-07-21 13:20:44 +02:00
winston c1aaaed128 gnomeExtensions: update for 2026-07-19 2026-07-20 18:50:42 +02:00
winstonandTom Hunze a9b4d6ec32 gnomeExtensions: add ignorelist and caching to update script
Co-authored-by: Tom Hunze <dev@thunze.de>
2026-07-20 18:50:42 +02:00
SandroandGitHub 805dc355c3 gnomeExtensions.arcmenu: 67.2 -> 69.2 (#523506) 2026-06-19 12:08:04 +00:00
Linus Emmerich d72bb5916a gnomeExtensions.forge: 49.3 -> 50.1
Make Forge compatible with the current GNOME Shell 50.1 by updating it
to upstream
2026-06-10 18:57:59 +02:00
Shyam Sunder cb090b1ccf gnomeExtensions.arcmenu: 67.2 -> 69.2 2026-06-09 22:54:01 -04:00
Florian KlinkandGitHub 64fff67d3d gnomeExtensions.pop-shell: 1.2.0-unstable-2025-10-01 -> 1.2.0-unstable-2026-03-31 (#506387) 2026-06-04 10:48:36 +00:00
Tom Hunze 3ca26fd785 gnomeExtensions.gsconnect: add meta.changelog 2026-05-27 09:54:38 +02:00
Tom Hunze dbe5b90834 gnomeExtensions.gsconnect: 71 -> 72
Changelog: https://github.com/GSConnect/gnome-shell-extension-gsconnect/releases/tag/v72
Diff: https://github.com/GSConnect/gnome-shell-extension-gsconnect/compare/v71...v72
2026-05-27 09:54:31 +02:00
winston 230f30515e gnomeExtensions.easyeffects-preset-selector: update patch 2026-05-14 19:34:26 +02:00
winston 3a1c76ece4 gnomeExtensions.copyous: fix preInstall 2026-05-14 19:34:26 +02:00
winston da411313ec gnomeExtensions: auto-update, add gnome 50 2026-05-14 19:34:25 +02:00
R. RyantmandDoron Behar eff8aa55f9 gnomeExtensions.systemd-manager: 19 -> 20 2026-04-12 17:44:51 +03:00
R. Ryantm 5337487344 gnomeExtensions.pop-shell: 1.2.0-unstable-2025-10-01 -> 1.2.0-unstable-2026-03-31 2026-04-03 19:55:36 +00:00
SandroandGitHub 0fd2db475a gnomeExtensions: auto-update (#493095) 2026-03-04 00:49:39 +00:00
AleksanaandGitHub 4587e469f6 gnomeExtensions.copyous: fix dependencies (#469919) 2026-02-23 16:06:07 +00:00
David Wronek f78d5ba85d gnomeExtensions.named-workspaces: fix build
Signed-off-by: David Wronek <david.wronek@mainlining.org>
2026-02-22 22:21:45 +01:00
David Wronek 3015f7f855 gnomeExtensions.desktop-icons-ng-ding: update patch
Signed-off-by: David Wronek <david.wronek@mainlining.org>
2026-02-22 22:21:45 +01:00
David Wronek 8c9b6e6014 gnomeExtensions: auto-update
Should render #491400 superfluous.

Signed-off-by: David Wronek <david.wronek@mainlining.org>
2026-02-22 19:00:03 +01:00
Joël Miramon 1180a5a66a gnomeExtensions.copyous: use override to fix dependencies 2026-02-18 12:51:05 +01:00
nixpkgs-ci[bot]andGitHub 4f189086d0 Merge master into staging-nixos 2026-01-26 18:08:53 +00:00
quantenzitrone 7d8132a92c treewide: remove references to the xorg namespace in pkgs (automated)
this creates some eval errors that will be fixed in the next commit

done with the following script:

```fish
\#!/usr/bin/env fish

set packagesjson (nix eval --impure --json --expr '
let
  lib = import ./lib;
in
import pkgs/servers/x11/xorg/default.nix (lib.mapAttrs (
  name: _:
  if name == "lib" then
    lib
  else if name == "config" then
    { allowAliases = false; }
  else
    name
) (__functionArgs (import pkgs/servers/x11/xorg/default.nix))) { }
' | jq)

set one (grep '^    [A-Za-z0-9_-]*$' pkgs/servers/x11/xorg/default.nix | string trim | string replace -r '$' Z | sort | string sub -e -1)
set two (grep '^  [A-Za-z0-9_-]* = [A-Za-z0-9_-]*;$' pkgs/servers/x11/xorg/default.nix | cut -d= -f1 | string trim | string replace -r '$' Z | sort | string sub -e -1)

for arg in $one $two
    set oname $arg
    set nname (echo $packagesjson | jq -r .$oname)

    if test $nname = null
        echo (set_color red)warn:(set_color normal) unknown package xorg.$oname >&2
        continue
    end

    echo $oname "->" $nname

    # replace basic xorg.$name references
    for file in (rg -F "xorg.$oname" --files-with-matches pkgs)
        # special cases
        sd -F "$oname = xorg.$oname;" "$nname = $nname;" $file

        # replace
        sd -F "xorg.$oname" "$nname" $file

        # fixup function arguments

        # prevent duplicate function args
        if grep -E " ($oname|$nname),\$" $file >/dev/null
            continue
        end

        if grep 'xorg\..' $file >/dev/null # case1: there is more so we can't just remove the function arg

            if grep ' xorg,$' $file >/dev/null
                sd ' xorg,$' " xorg,
                $nname," $file

            else if grep ' xorg ? .*,$' $file >/dev/null
                sd 'xorg( ? .*),$' "xorg\$1,
                $nname," $file

            else
                sd -F 'xorg,' "$nname,
                xorg," $file
            end

        else # case there is no more xorg..* so we can just replace the function arg
            sd 'xorg(| ? .*),.*$' "$nname," $file
        end
    end
end

nix fmt
```
2026-01-25 22:28:09 +01:00
Ben Siraphob c7e10647ea treewide: fix typos 2026-01-13 14:45:11 -05:00
AleksanaandGitHub d9a4bb218f gnomeExtensions.impatience: 0.5.2 -> 0.5.3 (#475175) 2026-01-01 09:10:09 +00:00
Ameya Shenoy 321615de65 gnomeExtensions.forge: 49.2 -> 49.3
There is a bug in the current gnome forge extension which does't toggle
floating windows correctly. There is already a fix present in the forge
repo [here](https://github.com/forge-ext/forge/commit/a2fabeb5102d3b96661cde0e332c288bea21a1a5)

Updating the gnome forge version to incorporate the fix

Signed-off-by: Ameya Shenoy <shenoy.ameya@gmail.com>
2026-01-01 11:49:17 +05:30
hideyosh1 6dc4dc04ea gnomeExtensions.impatience: 0.5.2 -> 0.5.3
adds gnome 49 support
2025-12-29 17:29:57 -06:00
AleksanaandGitHub 3c1016e6ac gnomeExtensions: auto-update (#471156) 2025-12-25 09:06:15 +00:00
André Lima 49a2635eaa gnomeExtensions: auto-update 2025-12-15 21:21:27 +00:00
AleksanaandGitHub 7a5b97f615 gnomeExtensions.printers: patch hardcoded binary paths (#470476) 2025-12-15 12:36:02 +00:00
Ihar Hrachyshka a269d900c4 treewide: remove remaining meta = with lib; 2025-12-14 15:16:00 -05:00
AleksanaandGitHub 3f736672c0 gnomeExtensions.icon-hider: remove unused derivation (#470465) 2025-12-14 13:45:10 +00:00
Tom Hunze f1f255171d gnomeExtensions.desktop-icons-ng-ding: patch to fix runtime errors 2025-12-13 17:34:37 +01:00
Tom Hunze 2508214c3c gnomeExtensions.printers: patch hardcoded binary paths 2025-12-13 17:10:49 +01:00
Tom Hunze 384030fff2 gnomeExtensions.icon-hider: remove unused derivation
This extension was dropped in #296240 but the derivation was never
removed from the tree.
2025-12-13 16:49:11 +01:00
Ihar HrachyshkaandWolfgang Walther 567e8dfd8e treewide: clean up 'meta = with' pattern
This commit was created by a combination of scripts and tools:
- an ast-grep script to prefix things in meta with `lib.`,
- a modified nixf-diagnose / nixf combination to remove unused `with
lib;`, and
- regular nixfmt.

Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
2025-12-10 18:09:49 +01:00
AleksanaandGitHub 0144f85020 gnomeExtensions.forge: package manually (#468438) 2025-12-07 03:50:26 +00:00
Agustin Mista 1db54da55a gnomeExtensions.forge: package manually
This extension has not gotten a new release in while, and the latest one
in the GNOME extension repository is not compatible with GNOME 49. This
commit replaces that one with a new one manually packaged directly from
GitHub, and which includes fixes to make it work with GNOME 49 again.
2025-12-06 15:51:17 +01:00
AleksanaandGitHub 42ec1ce799 gnomeExtensions.unite: 83 -> 84 (#462271) 2025-11-24 02:27:57 +00:00
AleksanaandGitHub d0ea3d72c1 gnomeExtensions.valent: 1.0.0.alpha.48 -> 1.0.0.alpha.49 (#462920) 2025-11-24 02:23:57 +00:00
Doron BeharandGitHub 5cd8526f24 gnomeExtensions.gsconnect: 67 -> 71 (#462701) 2025-11-18 16:20:23 +00:00
R. Ryantm 3c73391cd3 gnomeExtensions.valent: 1.0.0.alpha.48 -> 1.0.0.alpha.49 2025-11-18 15:20:14 +00:00