From 649c3c5a7fa1d02893d10c59adb709da49f504c8 Mon Sep 17 00:00:00 2001 From: Benedikt Peetz Date: Fri, 4 Apr 2025 18:07:10 +0200 Subject: fix(modules/tskm): Allocate Firefox profile id's consecutively MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Firefox apparently needs to have ID's staring from 0 and then counting up. This seems like an implementation detail leaking out, but … well it's Firefox. --- modules/by-name/ts/tskm/module.nix | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) (limited to 'modules/by-name/ts/tskm/module.nix') diff --git a/modules/by-name/ts/tskm/module.nix b/modules/by-name/ts/tskm/module.nix index 75af4509..51be48fe 100644 --- a/modules/by-name/ts/tskm/module.nix +++ b/modules/by-name/ts/tskm/module.nix @@ -2,7 +2,6 @@ lib, config, pkgs, - baseLib, ... }: let cfg = config.soispha.programs.tskm; @@ -15,13 +14,11 @@ in [name] ++ subprojects; - firefoxProfiles = builtins.listToAttrs (builtins.map (name: + firefoxProfiles = builtins.listToAttrs (lib.imap0 (index: name: lib.attrsets.nameValuePair name { inherit name; - # We use the hash-based function here, so that we can avoid an id change if a new - # profile is added (i.e., simply using it index.) - # TODO: However, I do not know what this id is for and if it would be bad if it changed? <2025-04-02> - id = baseLib.idFromString name; + # Add one here, so that we can have the default profile at id 0. + id = index + 1; }) allProjectNames); -- cgit 1.4.1