treewide: ignore unused arguments detected by deadnix

Link: https://github.com/danth/stylix/pull/519
This commit is contained in:
NAHO 2024-08-21 17:05:40 +02:00
parent 6ef37ca6aa
commit 3c54cb3384
No known key found for this signature in database
GPG key ID: 229CB671D09B95F5
2 changed files with 2 additions and 2 deletions

View file

@ -22,7 +22,7 @@ in {
# which will then download the pack regardless of its exclusion below.
environment.gnome.excludePackages = [ pkgs.gnome-backgrounds ];
nixpkgs.overlays = [(self: super: {
nixpkgs.overlays = [(_: super: {
gnome-shell = super.gnome-shell.overrideAttrs (oldAttrs: {
# Themes are usually applied via an extension, but extensions are
# not available on the login screen. The only way to change the

View file

@ -6,7 +6,7 @@ with config.lib.stylix.colors;
options.stylix.targets.nixos-icons.enable =
config.lib.stylix.mkEnableTarget "the NixOS logo" true;
config.nixpkgs.overlays = lib.mkIf (config.stylix.enable && config.stylix.targets.nixos-icons.enable) [(self: super: {
config.nixpkgs.overlays = lib.mkIf (config.stylix.enable && config.stylix.targets.nixos-icons.enable) [(_: super: {
nixos-icons = super.nixos-icons.overrideAttrs (oldAttrs: {
src = pkgs.applyPatches {
inherit (oldAttrs) src;