2024-11-04 02:37:38 +00:00
|
|
|
{ lib, config, pkgs, ... }:
|
|
|
|
|
|
|
|
let
|
|
|
|
cfg = config.snowhawk.firefox;
|
|
|
|
in
|
|
|
|
{
|
|
|
|
options.snowhawk.firefox = {
|
|
|
|
enable = lib.mkEnableOption "firefox home-manager module";
|
|
|
|
};
|
|
|
|
|
|
|
|
config = lib.mkIf cfg.enable {
|
|
|
|
programs.firefox = {
|
|
|
|
enable = true;
|
|
|
|
package = pkgs.firefox;
|
|
|
|
|
|
|
|
profiles.default = {
|
|
|
|
isDefault = true;
|
|
|
|
path = "x56262ch.default";
|
|
|
|
userChrome = /* css */ ''
|
|
|
|
#main-window[tabsintitlebar="true"]:not([extradragspace="true"]) #TabsToolbar > .toolbar-items {
|
|
|
|
opacity: 0;
|
|
|
|
pointer-events: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
#main-window:not([tabsintitlebar="true"]) #TabsToolbar {
|
|
|
|
visibility: collapse !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#sidebar-box[sidebarcommand="treestyletab_piro_sakura_ne_jp-sidebar-action"] #sidebar-header {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
#titlebar {display: none !important;}
|
|
|
|
#main-window {-moz-appearance:none !important;}
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
profiles.alt = {
|
|
|
|
id = 1;
|
|
|
|
path = "05fb1no8.casualypurple";
|
2024-11-16 12:31:49 +00:00
|
|
|
userChrome = config.programs.firefox.profiles.default.userChrome;
|
2024-11-04 02:37:38 +00:00
|
|
|
};
|
|
|
|
};
|
2024-11-25 00:12:04 +00:00
|
|
|
|
|
|
|
home.packages = with pkgs; [
|
|
|
|
(writeShellScriptBin "alt-firefox" ''
|
|
|
|
${lib.getExe config.programs.firefox.package} -P "alt"
|
|
|
|
'')
|
|
|
|
];
|
2024-11-04 02:37:38 +00:00
|
|
|
};
|
|
|
|
}
|