working firefox

This commit is contained in:
Kabbone 2022-11-01 21:31:30 +01:00
parent d0bbd790a8
commit cd4cccf5bd
2 changed files with 87 additions and 88 deletions

View File

@ -13,6 +13,7 @@
[ [
./alacritty.nix ./alacritty.nix
./rofi.nix ./rofi.nix
./firefox.nix
#./waybar.nix #./waybar.nix
#./games.nix #./games.nix
] ]

View File

@ -7,7 +7,7 @@
{ {
home.packages = [ pkgs.firefox-wayland ]; #home.packages = [ pkgs.firefox-wayland ];
programs = { programs = {
firefox = { firefox = {
@ -19,8 +19,8 @@
}; };
}; };
profiles.kabbone = { profiles.kabbone = {
id = 271987; #id = 271987;
name = "kabtop"; name = "kabbone";
isDefault = true; isDefault = true;
search = { search = {
engines = { engines = {
@ -46,94 +46,92 @@
}; };
order = [ "DuckDuckGo" ]; order = [ "DuckDuckGo" ];
} default = "DuckDuckGo";
};
bookmarks = [ bookmarks = [
{ {
name = "Kabtop Nextcloud"; name = "Kabtop Nextcloud";
url = "https://cloud.kabtop.de/" url = "https://cloud.kabtop.de/";
} }
{ {
name = "Home Assistant"; name = "Home Assistant";
url = "https://hass.home.opel-online.de/" url = "https://hass.home.opel-online.de/";
} }
{ {
name = "Netflix"; name = "Netflix";
url = "https://netflix.com/browse" url = "https://netflix.com/browse";
} }
{ {
name = "YouTube"; name = "YouTube";
url = "https://youtube.com/" url = "https://youtube.com/";
} }
{ {
name = "Kicker"; name = "Kicker";
url = "https://kicker.de/" url = "https://kicker.de/";
} }
{ {
name = "Chilloutzone"; name = "Chilloutzone";
url = "https://chilloutzone.net/" url = "https://chilloutzone.net/";
} }
{ {
name = "myDealZ"; name = "myDealZ";
url = "https://mydealz.de/" url = "https://mydealz.de/";
} }
{ {
name = "Kabtop Git"; name = "Kabtop Git";
url = "https://git.kabtop.de/" url = "https://git.kabtop.de/";
} }
{ {
name = "Spotify"; name = "Spotify";
url = "https://open.spotify.com/" url = "https://open.spotify.com/";
} }
{ {
name = "Tech": name = "Tech";
bookmarks = [ bookmarks = [
{ {
name = "Golem"; name = "Golem";
url = "https://golem.de/" url = "https://golem.de/";
} }
{ {
name = "Heise"; name = "Heise";
url = "https://heise.de/" url = "https://heise.de/";
} }
{ {
name = "Phoronix"; name = "Phoronix";
url = "https://phoronix.com/" url = "https://phoronix.com/";
} }
]; ];
} }
{ {
name = "Foren": name = "Foren";
bookmarks = [ bookmarks = [
{ {
name = "Archlinux-en"; name = "Archlinux-en";
url = "https://archlinux.org/" url = "https://archlinux.org/";
} }
{ {
name = "Archlinux-ARM"; name = "Archlinux-ARM";
url = "https://archlinuxarm.org/" url = "https://archlinuxarm.org/";
} }
{ {
name = "Archlinux-de"; name = "Archlinux-de";
url = "https://archlinux.de/" url = "https://archlinux.de/";
} }
]; ];
} }
];
}; };
settings = { extensions = with pkgs.nur.repos.rycee.firefox-addons; [
}; h264ify
honey
extensions = [ keepassxc-browser
with pkgs.nur.repos.rycee.firefox-addons; [ multi-account-containers
h264ity netflix-1080p
honey ublock-origin
keepassxc-browser sidebery
multi-account-containers ];
netflix-1080p
ublock-origin
sidebery
]
]
}; };
}; };
} }