mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-11-22 00:03:55 +01:00
librewolf: Install yomitan by default
This works, which is great.
This commit is contained in:
parent
fd35cd9db0
commit
d523816621
@ -1,4 +1,4 @@
|
||||
{ pkgs, ... }:
|
||||
{ pkgs, firefox-addons, ... }:
|
||||
|
||||
let
|
||||
friendlyfox = pkgs.stdenvNoCC.mkDerivation (finalAttrs: {
|
||||
@ -38,6 +38,10 @@ in
|
||||
package = pkgs.librewolf.override { cfg.speechSynthesisSupport = false; };
|
||||
|
||||
profiles.default = {
|
||||
extensions = with firefox-addons.packages.${pkgs.system}; [
|
||||
yomitan
|
||||
];
|
||||
|
||||
search = {
|
||||
force = true;
|
||||
default = "Mullvad";
|
||||
|
@ -3,6 +3,7 @@
|
||||
pkgs,
|
||||
lib,
|
||||
config,
|
||||
firefox-addons,
|
||||
...
|
||||
}:
|
||||
|
||||
@ -188,6 +189,10 @@ in
|
||||
|
||||
homeDirectory = "/home/${username}";
|
||||
};
|
||||
|
||||
extraSpecialArgs = {
|
||||
inherit firefox-addons;
|
||||
};
|
||||
};
|
||||
|
||||
virtualisation.vmVariant = {
|
||||
|
Loading…
Reference in New Issue
Block a user