From 5411cb396309faf4496bf1539fc9ef50432bcd59 Mon Sep 17 00:00:00 2001 From: kat Date: Tue, 26 Jul 2022 11:55:09 -0700 Subject: [PATCH] fix(home/firefox): add platform string to hostname to allow sync --- home/firefox/default.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/home/firefox/default.nix b/home/firefox/default.nix index f39f16fc..acb4ef15 100644 --- a/home/firefox/default.nix +++ b/home/firefox/default.nix @@ -1,9 +1,10 @@ { config, lib, pkgs, nixos, kw, ... }: let + inherit (lib.strings) toLower; commonSettings = { "app.update.auto" = false; - "identity.fxaccounts.account.device.name" = nixos.networking.hostName; + "identity.fxaccounts.account.device.name" = "${nixos.networking.hostName}-${toLower pkgs.hostPlatform.uname.system}"; "browser.download.lastDir" = "/home/kat/downloads"; "toolkit.legacyUserProfileCustomizations.stylesheets" = true; "svg.context-properties.content.enabled" = true;