Modularize firefox config in Nix home manager flake
parent
783908c5eb
commit
c605f61445
|
|
@ -16,98 +16,11 @@
|
||||||
home.stateVersion = "25.05";
|
home.stateVersion = "25.05";
|
||||||
|
|
||||||
programs.anki = import ../../modules/anki.nix;
|
programs.anki = import ../../modules/anki.nix;
|
||||||
|
programs.firefox = import ../../modules/firefox.nix {
|
||||||
|
inherit inputs;
|
||||||
|
inherit pkgs;
|
||||||
|
};
|
||||||
|
|
||||||
programs.firefox = {
|
|
||||||
enable = true;
|
|
||||||
nativeMessagingHosts = with pkgs; [
|
|
||||||
tridactyl-native
|
|
||||||
];
|
|
||||||
policies = {
|
|
||||||
DefaultDownloadDirectory = "\${home}/dl";
|
|
||||||
};
|
|
||||||
profiles = {
|
|
||||||
work = {
|
|
||||||
settings = {
|
|
||||||
"signon.rememberSignons" = false;
|
|
||||||
"findbar.highlightAll" = true;
|
|
||||||
"extensions.autoDisableScopes" = 0; # Enable extensions by default <https://nix-community.github.io/home-manager/options.xhtml#opt-programs.firefox.profiles._name_.extensions.packages>
|
|
||||||
};
|
|
||||||
extensions = {
|
|
||||||
packages = with inputs.firefox-addons.packages.${pkgs.system}; [
|
|
||||||
duckduckgo-privacy-essentials
|
|
||||||
istilldontcareaboutcookies
|
|
||||||
libredirect
|
|
||||||
keepassxc-browser
|
|
||||||
react-devtools
|
|
||||||
sponsorblock
|
|
||||||
tridactyl
|
|
||||||
ublock-origin
|
|
||||||
];
|
|
||||||
};
|
|
||||||
bookmarks = {
|
|
||||||
force = true;
|
|
||||||
settings = [
|
|
||||||
{
|
|
||||||
toolbar = true;
|
|
||||||
bookmarks = [
|
|
||||||
{
|
|
||||||
name = "NixOS";
|
|
||||||
bookmarks = [
|
|
||||||
{
|
|
||||||
name = "wiki";
|
|
||||||
url = "https://wiki.nixos.org/wiki/NixOS_Wiki";
|
|
||||||
}
|
|
||||||
{
|
|
||||||
name = "packages";
|
|
||||||
url = "https://search.nixos.org/packages";
|
|
||||||
}
|
|
||||||
{
|
|
||||||
name = "options";
|
|
||||||
url = "https://search.nixos.org/options";
|
|
||||||
}
|
|
||||||
];
|
|
||||||
}
|
|
||||||
];
|
|
||||||
}
|
|
||||||
];
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
policies = {
|
|
||||||
ExtensionSettings = {
|
|
||||||
"jid1-ZAdIEUB7XOzOJw@jetpack" = {
|
|
||||||
default_area = "navbar";
|
|
||||||
private_browsing = true;
|
|
||||||
};
|
|
||||||
"idcac-pub@guus.ninja" = {
|
|
||||||
default_area = "navbar";
|
|
||||||
private_browsing = true;
|
|
||||||
};
|
|
||||||
"7esoorv3@alefvanoon.anonaddy.me" = {
|
|
||||||
default_area = "navbar";
|
|
||||||
};
|
|
||||||
"keepassxc-browser@keepassxc.org" = {
|
|
||||||
default_area = "navbar";
|
|
||||||
private_browsing = true;
|
|
||||||
};
|
|
||||||
"@react-devtools" = {
|
|
||||||
default_area = "navbar";
|
|
||||||
private_browsing = true;
|
|
||||||
};
|
|
||||||
"sponsorBlocker@ajay.app" = {
|
|
||||||
default_area = "navbar";
|
|
||||||
private_browsing = true;
|
|
||||||
};
|
|
||||||
"tridactyl.vim@cmcaine.co.uk".settings = {
|
|
||||||
private_browsing = true;
|
|
||||||
};
|
|
||||||
"uBlock0@raymondhill.net".settings = {
|
|
||||||
default_area = "navbar";
|
|
||||||
private_browsing = true;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
programs.git.enable = true;
|
programs.git.enable = true;
|
||||||
programs.neovim = {
|
programs.neovim = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,93 @@
|
||||||
|
{ inputs, pkgs, ... }:
|
||||||
|
|
||||||
|
{
|
||||||
|
enable = true;
|
||||||
|
nativeMessagingHosts = with pkgs; [
|
||||||
|
tridactyl-native
|
||||||
|
];
|
||||||
|
policies = {
|
||||||
|
DefaultDownloadDirectory = "\${home}/dl";
|
||||||
|
};
|
||||||
|
profiles = {
|
||||||
|
work = {
|
||||||
|
settings = {
|
||||||
|
"signon.rememberSignons" = false;
|
||||||
|
"findbar.highlightAll" = true;
|
||||||
|
"extensions.autoDisableScopes" = 0; # Enable extensions by default <https://nix-community.github.io/home-manager/options.xhtml#opt-programs.firefox.profiles._name_.extensions.packages>
|
||||||
|
};
|
||||||
|
extensions = {
|
||||||
|
packages = with inputs.firefox-addons.packages.${pkgs.system}; [
|
||||||
|
duckduckgo-privacy-essentials
|
||||||
|
istilldontcareaboutcookies
|
||||||
|
libredirect
|
||||||
|
keepassxc-browser
|
||||||
|
react-devtools
|
||||||
|
sponsorblock
|
||||||
|
tridactyl
|
||||||
|
ublock-origin
|
||||||
|
];
|
||||||
|
};
|
||||||
|
bookmarks = {
|
||||||
|
force = true;
|
||||||
|
settings = [
|
||||||
|
{
|
||||||
|
toolbar = true;
|
||||||
|
bookmarks = [
|
||||||
|
{
|
||||||
|
name = "NixOS";
|
||||||
|
bookmarks = [
|
||||||
|
{
|
||||||
|
name = "wiki";
|
||||||
|
url = "https://wiki.nixos.org/wiki/NixOS_Wiki";
|
||||||
|
}
|
||||||
|
{
|
||||||
|
name = "packages";
|
||||||
|
url = "https://search.nixos.org/packages";
|
||||||
|
}
|
||||||
|
{
|
||||||
|
name = "options";
|
||||||
|
url = "https://search.nixos.org/options";
|
||||||
|
}
|
||||||
|
];
|
||||||
|
}
|
||||||
|
];
|
||||||
|
}
|
||||||
|
];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
policies = {
|
||||||
|
ExtensionSettings = {
|
||||||
|
"jid1-ZAdIEUB7XOzOJw@jetpack" = {
|
||||||
|
default_area = "navbar";
|
||||||
|
private_browsing = true;
|
||||||
|
};
|
||||||
|
"idcac-pub@guus.ninja" = {
|
||||||
|
default_area = "navbar";
|
||||||
|
private_browsing = true;
|
||||||
|
};
|
||||||
|
"7esoorv3@alefvanoon.anonaddy.me" = {
|
||||||
|
default_area = "navbar";
|
||||||
|
};
|
||||||
|
"keepassxc-browser@keepassxc.org" = {
|
||||||
|
default_area = "navbar";
|
||||||
|
private_browsing = true;
|
||||||
|
};
|
||||||
|
"@react-devtools" = {
|
||||||
|
default_area = "navbar";
|
||||||
|
private_browsing = true;
|
||||||
|
};
|
||||||
|
"sponsorBlocker@ajay.app" = {
|
||||||
|
default_area = "navbar";
|
||||||
|
private_browsing = true;
|
||||||
|
};
|
||||||
|
"tridactyl.vim@cmcaine.co.uk".settings = {
|
||||||
|
private_browsing = true;
|
||||||
|
};
|
||||||
|
"uBlock0@raymondhill.net".settings = {
|
||||||
|
default_area = "navbar";
|
||||||
|
private_browsing = true;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
||||||
Loading…
Reference in New Issue