This commit is contained in:
nora 2023-09-17 21:13:41 +02:00
parent bc6f9e293f
commit 6ab5c496f3
5 changed files with 114 additions and 141 deletions

View file

@ -1,36 +1,38 @@
{ pkgs }: {
enable = true;
profiles = {
nils = {
id = 0;
name = "nils";
{ pkgs, ... }: {
programs.firefox = {
enable = true;
profiles = {
nils = {
id = 0;
name = "nils";
extensions = with pkgs.nur.repos.rycee.firefox-addons; [
ublock-origin
bitwarden
tampermonkey
];
extensions = with pkgs.nur.repos.rycee.firefox-addons; [
ublock-origin
bitwarden
tampermonkey
];
bookmarks = [
{
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";
}
];
}
];
bookmarks = [
{
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";
}
];
}
];
};
};
};
}