From 8ded92ea63667c0c34c99821c031cdea799317b3 Mon Sep 17 00:00:00 2001 From: Bernardo Magri Date: Wed, 10 Jun 2026 15:40:58 +0100 Subject: [PATCH] =?UTF-8?q?chore:=20drop=20renamed=20package=20aliases=20(?= =?UTF-8?q?swww=E2=86=92awww,=20greetd.tuigreet=E2=86=92tuigreet)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Silences nixpkgs' rename warnings on every eval. Co-Authored-By: Claude Fable 5 --- modules/home/default.nix | 2 +- modules/nixos/default.nix | 2 +- pkgs/nomarchy-theme-sync/default.nix | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/modules/home/default.nix b/modules/home/default.nix index 1704b13..699ce68 100644 --- a/modules/home/default.nix +++ b/modules/home/default.nix @@ -17,7 +17,7 @@ home.stateVersion = "26.05"; home.packages = with pkgs; [ - swww # wallpaper daemon with animated transitions + awww # wallpaper daemon with animated transitions (the swww fork) fuzzel # launcher / dmenu (used by the theme picker bind) libnotify ]; diff --git a/modules/nixos/default.nix b/modules/nixos/default.nix index 225a9ae..d091826 100644 --- a/modules/nixos/default.nix +++ b/modules/nixos/default.nix @@ -27,7 +27,7 @@ in services.greetd = lib.mkIf cfg.greeter.enable { enable = lib.mkDefault true; settings.default_session = { - command = lib.mkDefault "${pkgs.greetd.tuigreet}/bin/tuigreet --time --remember --cmd Hyprland"; + command = lib.mkDefault "${pkgs.tuigreet}/bin/tuigreet --time --remember --cmd Hyprland"; user = "greeter"; }; }; diff --git a/pkgs/nomarchy-theme-sync/default.nix b/pkgs/nomarchy-theme-sync/default.nix index cd999b5..35698c2 100644 --- a/pkgs/nomarchy-theme-sync/default.nix +++ b/pkgs/nomarchy-theme-sync/default.nix @@ -2,7 +2,7 @@ , stdenvNoCC , python3 , makeWrapper -, swww +, awww , libnotify , git # Shipped theme presets, baked into the package as a fallback so @@ -33,7 +33,7 @@ stdenvNoCC.mkDerivation { # Stdlib-only Python. home-manager is deliberately NOT wrapped in — # the rebuild must use the user's own home-manager from their PATH. wrapProgram $out/bin/nomarchy-theme-sync \ - --prefix PATH : ${lib.makeBinPath [ swww libnotify git ]} \ + --prefix PATH : ${lib.makeBinPath [ awww libnotify git ]} \ ${lib.optionalString (themesDir != null) "--set NOMARCHY_DEFAULT_THEMES $out/share/nomarchy/themes"}