home: add firefox
This commit is contained in:
parent
4d04dd9b9b
commit
e06edc8f47
|
@ -4,6 +4,7 @@
|
|||
./bat.nix
|
||||
./direnv.nix
|
||||
./documentation.nix
|
||||
./firefox
|
||||
./flameshot.nix
|
||||
./git
|
||||
./gpg.nix
|
||||
|
|
19
home/firefox/default.nix
Normal file
19
home/firefox/default.nix
Normal file
|
@ -0,0 +1,19 @@
|
|||
{ config, lib, ... }:
|
||||
{
|
||||
options.my.home.firefox = with lib; {
|
||||
enable = mkEnableOption "firefox configuration";
|
||||
|
||||
tridactyl = {
|
||||
enable = mkOption {
|
||||
type = types.bool;
|
||||
description = "tridactyl configuration";
|
||||
example = false;
|
||||
default = config.my.home.firefox.enable;
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
imports = [
|
||||
./firefox.nix
|
||||
];
|
||||
}
|
40
home/firefox/firefox.nix
Normal file
40
home/firefox/firefox.nix
Normal file
|
@ -0,0 +1,40 @@
|
|||
{ config, lib, pkgs, ... }:
|
||||
let
|
||||
cfg = config.my.home.firefox;
|
||||
in
|
||||
{
|
||||
config.programs.firefox = lib.mkIf cfg.enable {
|
||||
enable = true;
|
||||
|
||||
profiles = {
|
||||
default = {
|
||||
id = 0;
|
||||
|
||||
settings = {
|
||||
"browser.bookmarks.showMobileBookmarks" = true; # Mobile bookmarks
|
||||
"browser.download.useDownloadDir" = false; # Ask for download location
|
||||
"browser.in-content.dark-mode" = true; # Dark mode
|
||||
"browser.newtabpage.activity-stream.feeds.section.topstories" = false; # Disable top stories
|
||||
"browser.newtabpage.activity-stream.feeds.sections" = false;
|
||||
"browser.newtabpage.activity-stream.feeds.system.topstories" = false; # Disable top stories
|
||||
"browser.newtabpage.activity-stream.section.highlights.includePocket" = false; # Disable pocket
|
||||
"extensions.pocket.enabled" = false; # Disable pocket
|
||||
"media.eme.enabled" = true; # Enable DRM
|
||||
"media.gmp-widevinecdm.visible" = true; # Enable DRM
|
||||
"media.gmp-widevinecdm.enabled" = true; # Enable DRM
|
||||
"signon.autofillForms" = false; # Disable built-in form-filling
|
||||
"signon.rememberSignons" = false; # Disable built-in password manager
|
||||
"ui.systemUsesDarkTheme" = true; # Dark mode
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
extensions = with pkgs.nur.repos.rycee.firefox-addons; [
|
||||
bitwarden
|
||||
https-everywhere
|
||||
i-dont-care-about-cookies
|
||||
reddit-enhancement-suite
|
||||
ublock-origin
|
||||
] ++ lib.optional (cfg.tridactyl.enable) tridactyl;
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue