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
./rofi.nix
./firefox.nix
#./waybar.nix
#./games.nix
]

View File

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