aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZhongheng Liu <z.liu@outlook.com.gr>2025-05-29 19:08:44 +0300
committerZhongheng Liu <z.liu@outlook.com.gr>2025-05-29 19:08:44 +0300
commitf965e8b9892debc8a9c020cad379c3de3cc67fb8 (patch)
tree120e3ef011c2e485a83bcb8d36649fe90d3222fa
parent7e2c5f2c7c6b2a4a10abed862c1ffb422e10d462 (diff)
downloadnixos-configuration-f965e8b9892debc8a9c020cad379c3de3cc67fb8.tar.gz
nixos-configuration-f965e8b9892debc8a9c020cad379c3de3cc67fb8.tar.bz2
nixos-configuration-f965e8b9892debc8a9c020cad379c3de3cc67fb8.zip
feat: firefox-devedition -> librewolf
switching to librewolf - my preferred OSS flavour of firefox.
-rw-r--r--home-manager/stvnliu/home.nix13
1 files changed, 3 insertions, 10 deletions
diff --git a/home-manager/stvnliu/home.nix b/home-manager/stvnliu/home.nix
index ae1589c..cfae430 100644
--- a/home-manager/stvnliu/home.nix
+++ b/home-manager/stvnliu/home.nix
@@ -73,16 +73,9 @@
firefox = {
enable = true;
package = with pkgs;
- (firefox-devedition.override {
- nativeMessagingHosts = [
- (passff-host.overrideAttrs (_old: {
- dontStrip = true;
- patchPhase = ''
- sed -i 's#COMMAND = "pass"#COMMAND = "${
- pass.withExtensions (ext: with ext; [ pass-otp pass-import ])
- }/bin/pass"#' src/passff.py'';
- }))
- ];
+ (librewolf.override {
+ nativeMessagingHosts = [ passff-host ];
+ hasMozSystemDirPatch = true;
});
};
thunderbird = {