mirror of
https://github.com/gensokyo-zone/infrastructure.git
synced 2026-02-09 12:29:19 -08:00
fix(home/firefox): add platform string to hostname to allow sync
This commit is contained in:
parent
a2fc075ea2
commit
5411cb3963
1 changed files with 2 additions and 1 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue