fix(home/firefox): add platform string to hostname to allow sync

This commit is contained in:
Kat Inskip 2022-07-26 11:55:09 -07:00
parent a2fc075ea2
commit 5411cb3963
Signed by: kat
GPG key ID: 465E64DECEA8CF0F

View file

@ -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;