From c9760a6a2ba532e6d0dcae804b7cb62ec7198f70 Mon Sep 17 00:00:00 2001 From: chillcicada <116548943+chillcicada@users.noreply.github.com> Date: Mon, 1 Dec 2025 01:11:06 +0800 Subject: [PATCH] gdu: properly rename module and option names (#2044) Fixes: b9b050183938 ("gdu: init (#1995)") Link: https://github.com/nix-community/stylix/pull/2044 Reviewed-by: NAHO <90870942+trueNAHO@users.noreply.github.com> Co-authored-by: NAHO <90870942+trueNAHO@users.noreply.github.com> (cherry picked from commit 961e2f02afd47d78a86143c823df426e6fc77f46) --- modules/gdu/hm.nix | 2 +- modules/gdu/meta.nix | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/gdu/hm.nix b/modules/gdu/hm.nix index 48910178..dc6a637c 100644 --- a/modules/gdu/hm.nix +++ b/modules/gdu/hm.nix @@ -3,7 +3,7 @@ ... }: mkTarget { - name = "go DiskUsage()"; + name = "gdu"; humanName = "go DiskUsage()"; configElements = diff --git a/modules/gdu/meta.nix b/modules/gdu/meta.nix index 0b9140b7..071250e8 100644 --- a/modules/gdu/meta.nix +++ b/modules/gdu/meta.nix @@ -1,6 +1,6 @@ { lib, ... }: { - name = "gdu"; + name = "go DiskUsage()"; homepage = "https://github.com/dundee/gdu"; maintainers = [ lib.maintainers.omega-800 ]; }