Skip to content

Commit

Permalink
bricked: add firefox
Browse files Browse the repository at this point in the history
  • Loading branch information
brckd committed Jun 26, 2024
1 parent b4ebcd7 commit eb29758
Showing 1 changed file with 40 additions and 1 deletion.
41 changes: 40 additions & 1 deletion configs/home/bricked/default.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
{pkgs, ...}: {
{
pkgs,
config,
...
}: {
home = {
username = "bricked";
homeDirectory = "/home/bricked";
Expand Down Expand Up @@ -44,6 +48,41 @@
programs.cava.enable = true;

# Apps
programs.firefox = {
enable = true;
profiles = {
bricked = {
name = "bricked";
extensions = with config.nur.repos.rycee.firefox-addons; [
ublock-origin
bitwarden
darkreader
libredirect
];
search = {
default = "DuckDuckGo";
force = true;
engines = {
"Google".metaData.hidden = true;
"Bing".metaData.hidden = true;
};
};
bookmarks = [
{
name = "NixDots";
tags = ["nix"];
keyword = "nixdots";
url = "https://github.com/brckd/nixdots";
}
];
settings = {
"extensions.autoDisableScopes" = 0;
"browser.toolbars.bookmarks.visibility" = "never";
"browser.newtabpage.activity-stream.improvesearch.topSiteSearchShortcuts" = false;
};
};
};
};
programs.librewolf.enable = true;
programs.vesktop.enable = true;
home.packages = with pkgs; [heroic];
Expand Down

0 comments on commit eb29758

Please sign in to comment.