2024-12-27 21:30:25 -06:00
|
|
|
{
|
|
|
|
lib,
|
|
|
|
config,
|
|
|
|
pkgs,
|
|
|
|
...
|
|
|
|
}:
|
2024-06-20 08:59:56 -05:00
|
|
|
with lib;
|
|
|
|
let
|
|
|
|
cfg = config.myHome.programs.firefox;
|
|
|
|
in
|
|
|
|
{
|
|
|
|
options.myHome.programs.firefox.enable = mkEnableOption "Firefox";
|
|
|
|
|
2024-12-27 21:30:25 -06:00
|
|
|
config = mkIf cfg.enable {
|
|
|
|
programs.firefox = {
|
|
|
|
enable = true;
|
|
|
|
package = pkgs.firefox.override {
|
|
|
|
extraPolicies = {
|
|
|
|
DontCheckDefaultBrowser = true;
|
|
|
|
DisablePocket = true;
|
|
|
|
# See nixpkgs' firefox/wrapper.nix to check which options you can use
|
|
|
|
nativeMessagingHosts = [
|
|
|
|
# Gnome shell native connector
|
|
|
|
pkgs.gnome-browser-connector
|
|
|
|
# plasma connector
|
|
|
|
# plasma5Packages.plasma-browser-integration
|
|
|
|
];
|
|
|
|
};
|
2024-06-20 08:59:56 -05:00
|
|
|
};
|
2024-12-27 21:30:25 -06:00
|
|
|
policies = import ./policies.nix;
|
|
|
|
|
|
|
|
profiles.default = import ./profile-default.nix { inherit pkgs; };
|
2024-06-20 08:59:56 -05:00
|
|
|
};
|
2024-12-27 21:30:25 -06:00
|
|
|
};
|
2024-06-20 08:59:56 -05:00
|
|
|
}
|