Cleanup home manager

This commit is contained in:
nora 2023-08-28 20:29:25 +02:00
parent a87ec6f1d2
commit 12eb0b02bf
4 changed files with 135 additions and 135 deletions

36
home-manager/firefox.nix Normal file
View file

@ -0,0 +1,36 @@
{ pkgs }: {
enable = true;
profiles = {
nils = {
id = 0;
name = "nils";
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";
}
];
}
];
};
};
}