nix-config/nixos/_mixins/desktop/firefox.nix

8 lines
136 B
Nix
Raw Normal View History

{ pkgs, ... }: {
programs.firefox = {
enable = true;
languagePacks = [ "en-US" ];
package = pkgs.unstable.firefox;
};
}