Final edits before fork

This commit is contained in:
Dragyx 2024-04-29 13:17:46 +02:00
commit fb5b8c6385
10 changed files with 363 additions and 156 deletions

View file

@ -24,20 +24,23 @@ in
};
home-manager.users.${username} = {
programs.firefox.profiles = {
main = {
id = 0;
isDefault = true;
search.default = "DuckDuckGo";
extensions = with pkgs.nur.repos.rycee.firefox-addons; [
ublock-origin
bitwarden
darkreader
maya-dark
];
search.force = true;
programs.firefox = {
enable = true;
profiles = {
main = {
id = 0;
isDefault = true;
search.default = "DuckDuckGo";
extensions = with pkgs.nur.repos.rycee.firefox-addons; [
ublock-origin
bitwarden
darkreader
maya-dark
];
search.force = true;
};
};
};
};
};
}