system: Don't inherit firefox-addons directly

Fixes an issue where firefox-addons wasn't available in the example
config.
This commit is contained in:
Donovan Glover 2024-08-16 18:58:31 -04:00
parent 88eec9d0e9
commit 40aca5aff6
No known key found for this signature in database
GPG Key ID: EA7408A77AE1BE65

View File

@ -3,7 +3,6 @@
pkgs, pkgs,
lib, lib,
config, config,
firefox-addons,
... ...
}: }:
@ -191,7 +190,7 @@ in
}; };
extraSpecialArgs = { extraSpecialArgs = {
inherit firefox-addons; inherit (nix-config.inputs) firefox-addons;
inherit phone; inherit phone;
}; };
}; };