From 7f158fa65e4b563a22ef9dbf67c7d3a9d34f7b11 Mon Sep 17 00:00:00 2001 From: Soispha Date: Sat, 21 Oct 2023 00:04:35 +0200 Subject: fix(hm/conf/taskwarrior/firefox): Generate the profile ids by counting Firefox expects the IDs to be consecutive, thus the previous hashing implementation didn't work. Additionally, these IDs are still all unique as we generate them by iteration over all possible projects --- hm/soispha/conf/firefox/default.nix | 29 ++++++++++++++++------------- 1 file changed, 16 insertions(+), 13 deletions(-) (limited to 'hm/soispha/conf/firefox') diff --git a/hm/soispha/conf/firefox/default.nix b/hm/soispha/conf/firefox/default.nix index 1f3b7062..d35b7256 100644 --- a/hm/soispha/conf/firefox/default.nix +++ b/hm/soispha/conf/firefox/default.nix @@ -22,6 +22,20 @@ video-pauser = (import ./functions/extensions/video-pauser.nix) {inherit pkgs video_pause;}; + profiles = { + "default" = { + inherit extensions search extraConfig bookmarks userChrome; + isDefault = true; + id = 0; + name = "default"; + }; + "clean" = { + isDefault = false; + id = 1; + name = "clean"; + }; + }; + taskwarriorProfiles = import ../taskwarrior/firefox { inherit extensions @@ -32,6 +46,7 @@ lib config ; + profile_size = builtins.length (builtins.attrNames profiles); }; search = { @@ -72,19 +87,7 @@ in { }; }; profiles = - { - "default" = { - inherit extensions search extraConfig bookmarks userChrome; - isDefault = true; - id = 0; - name = "default"; - }; - "clean" = { - isDefault = false; - id = 1; - name = "clean"; - }; - } + profiles // taskwarriorProfiles; }; } -- cgit 1.4.1