modules/home/desktop: use firefox from nixpkgs
All checks were successful
/ check (push) Successful in 36s
/ check (pull_request) Successful in 1m31s

This commit is contained in:
Nikodem Rabuliński 2025-05-01 22:59:28 +02:00
parent 46e631c8c5
commit 1f936258f2
Signed by: nrabulinski
SSH key fingerprint: SHA256:AZZVyfKStaCo8sbJB+3Rr/CRrlym1oEgw7vMnynJeR8
3 changed files with 1 additions and 31 deletions

View file

@ -2,7 +2,6 @@
config,
lib,
pkgs,
inputs,
inputs',
...
}:
@ -29,11 +28,7 @@
programs.firefox = {
enable = true;
package =
let
firefox-pkgs = pkgs.extend inputs.firefox-darwin.overlay;
in
lib.mkIf pkgs.stdenv.isDarwin firefox-pkgs.firefox-bin;
package = lib.mkIf pkgs.stdenv.isDarwin pkgs.firefox-unwrapped;
};
programs.qutebrowser = {