mirror of
https://github.com/Noratrieb/nixos.git
synced 2026-01-14 11:45:06 +01:00
51 lines
1.3 KiB
Nix
51 lines
1.3 KiB
Nix
{ pkgs, ... }: {
|
|
programs.firefox = {
|
|
enable = true;
|
|
profiles = {
|
|
nora = {
|
|
id = 0;
|
|
name = "nora";
|
|
|
|
extensions.packages = with pkgs.nur.repos.rycee.firefox-addons; [
|
|
ublock-origin
|
|
bitwarden
|
|
tampermonkey
|
|
sidebery
|
|
darkreader
|
|
];
|
|
|
|
bookmarks = {
|
|
force = true;
|
|
settings = [
|
|
{
|
|
name = "Nix sites";
|
|
toolbar = true;
|
|
bookmarks = [
|
|
{
|
|
name = "NixOS options";
|
|
url = "https://search.nixos.org/options";
|
|
}
|
|
{
|
|
name = "home-manager options";
|
|
url = "https://rycee.gitlab.io/home-manager/options.html";
|
|
}
|
|
{
|
|
name = "nixpkgs search";
|
|
url = "https://search.nixos.org/packages";
|
|
}
|
|
{
|
|
name = "Github Notifications";
|
|
url = "https://github.com/notifications";
|
|
}
|
|
{
|
|
name = "glove80 layout";
|
|
url = "https://my.moergo.com/glove80/#/layout/user/4ade12f3-81d7-4342-8196-9c13c43ac94e";
|
|
}
|
|
];
|
|
}
|
|
];
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|