chore: firefox-esr -> firefox

This commit is contained in:
Julien Malka 2024-08-09 17:01:05 +02:00
parent 69c1ca23ba
commit 04aba6d9af
Signed by: Luj
GPG key ID: 6FC74C847011FD83

View file

@ -1,4 +1,9 @@
{ config, pkgs, lib, ... }:
{
config,
pkgs,
lib,
...
}:
let
cfg = config.luj.programs.firefox;
in
@ -11,7 +16,7 @@ with lib;
config = mkIf cfg.enable {
programs.firefox = {
enable = true;
package = pkgs.firefox-esr;
package = pkgs.firefox;
};
};