moved ardour to home.packages, added some plugins
also set firefox search config to force instead of default as it was breaking home-manager rebuilds
This commit is contained in:
parent
727fa24022
commit
086f90f59c
3 changed files with 48 additions and 44 deletions
|
@ -1,44 +1,47 @@
|
|||
{ config, pkgs, ... }: {
|
||||
programs.firefox = {
|
||||
enable = true;
|
||||
# package = pkgs.librewolf;
|
||||
profiles.blue = {
|
||||
isDefault = true;
|
||||
id = 0;
|
||||
extensions.packages = with pkgs.nur.repos.rycee.firefox-addons; [
|
||||
indie-wiki-buddy
|
||||
bitwarden
|
||||
darkreader
|
||||
ff2mpv
|
||||
i-dont-care-about-cookies
|
||||
ublock-origin
|
||||
unpaywall
|
||||
dearrow
|
||||
sponsorblock
|
||||
return-youtube-dislikes
|
||||
clearurls
|
||||
youtube-shorts-block
|
||||
youtube-high-definition
|
||||
shinigami-eyes
|
||||
];
|
||||
search.default = "ddg"; # Set search engine to DuckDuckGo
|
||||
settings = {
|
||||
"browser.search.region" = "GB";
|
||||
"browser.search.isUS" = false;
|
||||
"distribution.searchplugins.defaultLocale" = "en-GB";
|
||||
"general.useragent.locale" = "en-GB";
|
||||
"identity.fxaccounts.enabled" = false;
|
||||
"extensions.autoDisableScopes" = 0;
|
||||
"browser.bookmarks.autoExportHTML" = true;
|
||||
"browser.bookmarks.file" = "~/bookmarks.html";
|
||||
};
|
||||
|
||||
};
|
||||
policies = {
|
||||
"OfferToSaveLogins" = false;
|
||||
"DisablePocket" = true;
|
||||
"AutofillAddressEnabled" = false;
|
||||
"AutofillCreditCardEnabled" = false;
|
||||
};
|
||||
};
|
||||
{
|
||||
config,
|
||||
pkgs,
|
||||
...
|
||||
}: {
|
||||
programs.firefox = {
|
||||
enable = true;
|
||||
# package = pkgs.librewolf;
|
||||
profiles.blue = {
|
||||
isDefault = true;
|
||||
id = 0;
|
||||
extensions.packages = with pkgs.nur.repos.rycee.firefox-addons; [
|
||||
indie-wiki-buddy
|
||||
bitwarden
|
||||
darkreader
|
||||
ff2mpv
|
||||
i-dont-care-about-cookies
|
||||
ublock-origin
|
||||
unpaywall
|
||||
dearrow
|
||||
sponsorblock
|
||||
return-youtube-dislikes
|
||||
clearurls
|
||||
youtube-shorts-block
|
||||
youtube-high-definition
|
||||
shinigami-eyes
|
||||
];
|
||||
search.force = "ddg"; # Set search engine to DuckDuckGo
|
||||
settings = {
|
||||
"browser.search.region" = "GB";
|
||||
"browser.search.isUS" = false;
|
||||
"distribution.searchplugins.defaultLocale" = "en-GB";
|
||||
"general.useragent.locale" = "en-GB";
|
||||
"identity.fxaccounts.enabled" = false;
|
||||
"extensions.autoDisableScopes" = 0;
|
||||
"browser.bookmarks.autoExportHTML" = true;
|
||||
"browser.bookmarks.file" = "~/bookmarks.html";
|
||||
};
|
||||
};
|
||||
policies = {
|
||||
"OfferToSaveLogins" = false;
|
||||
"DisablePocket" = true;
|
||||
"AutofillAddressEnabled" = false;
|
||||
"AutofillCreditCardEnabled" = false;
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
@ -45,6 +45,8 @@
|
|||
telegram-desktop # Telegram messenger client
|
||||
pavucontrol # Useful audio control GUI
|
||||
stable.prismlauncher
|
||||
calf
|
||||
ardour
|
||||
];
|
||||
services.flatpak.packages = [
|
||||
"io.mrarm.mcpelauncher" # Minecraft bedrock edition launcher
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue