nixos-config/modules/home/firefox/default.nix
2024-01-20 18:19:08 +01:00

22 lines
490 B
Nix

{ pkgs, lib, config, username, ... }:
{
programs.firefox = {
enable = true;
profiles.${username} = {
settings = {};
isDefault = true;
extensions = with pkgs.nur.repos.rycee.firefox-addons; [
ublock-origin
return-youtube-dislikes
i-dont-care-about-cookies
# youtube-time-tracker
firefox-color
stylus
scroll_anywhere
clearurls
];
extraConfig = builtins.readFile ./user.js;
};
};
}