mirror of
https://github.com/SebastianStork/nixos-config.git
synced 2026-01-21 17:31:34 +01:00
Fix hardcoded system architecture
This commit is contained in:
parent
bb47ab177d
commit
0f5efb1628
2 changed files with 3 additions and 3 deletions
|
|
@ -1,10 +1,10 @@
|
|||
{ inputs, lib, ... }:
|
||||
{ inputs, pkgs, lib, ... }:
|
||||
let
|
||||
extension = shortId: uuid: {
|
||||
name = uuid;
|
||||
value = {
|
||||
install_url = "file:///${
|
||||
inputs.firefox-addons.packages.x86_64-linux.${shortId}
|
||||
inputs.firefox-addons.packages.${pkgs.system}.${shortId}
|
||||
}/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/${uuid}.xpi";
|
||||
installation_mode = "force_installed";
|
||||
default_area = "menupanel";
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue