diff options
author | Soispha <soispha@vhack.eu> | 2023-10-21 22:30:59 +0200 |
---|---|---|
committer | Soispha <soispha@vhack.eu> | 2023-10-21 22:30:59 +0200 |
commit | 27a254a27df47cac88ce8053b4efe575cf9c481e (patch) | |
tree | 5441124451062b275592bf798e9da88f10851f26 /hm/soispha/conf/taskwarrior/firefox/default.nix | |
parent | fix(hm/conf/firefox/scr/extensions): Add required 'default_area' (diff) | |
download | nixos-config-27a254a27df47cac88ce8053b4efe575cf9c481e.zip |
feat(hm/conf/firefox): Use the policy.json file for configs
Diffstat (limited to '')
-rw-r--r-- | hm/soispha/conf/taskwarrior/firefox/default.nix | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/hm/soispha/conf/taskwarrior/firefox/default.nix b/hm/soispha/conf/taskwarrior/firefox/default.nix index ff2d49d0..fb5daaa8 100644 --- a/hm/soispha/conf/taskwarrior/firefox/default.nix +++ b/hm/soispha/conf/taskwarrior/firefox/default.nix @@ -1,12 +1,11 @@ { - extensions, - userChrome, - extraConfig, - bookmarks, - search, - profile_size, - lib, config, + lib, + # options + prefConfig, + profile_size, + search, + userChrome, ... }: let inherit (config.soispha.taskwarrior.projects) projects; @@ -18,7 +17,8 @@ inherit name; value = { isDefault = false; - inherit name id extensions userChrome search bookmarks extraConfig; + extraConfig = prefConfig; + inherit id name search userChrome; }; }; projects_id = |