mirror of
https://github.com/Noratrieb/nixos.git
synced 2026-03-15 00:36:05 +01:00
Cleanup home manager
This commit is contained in:
parent
a87ec6f1d2
commit
12eb0b02bf
4 changed files with 135 additions and 135 deletions
36
home-manager/firefox.nix
Normal file
36
home-manager/firefox.nix
Normal 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";
|
||||
}
|
||||
];
|
||||
}
|
||||
];
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue