firefox: new profile that handles nonfree junk

This commit is contained in:
Primrose 2025-02-20 19:19:20 +01:00
parent c7547ba6d6
commit fe001ae420
Signed by: primrose
GPG key ID: 4E887A4CA9714ADA
3 changed files with 44 additions and 14 deletions

View file

@ -47,7 +47,7 @@ in {
};
};
profiles.leana = {
profiles.default = {
userChrome = let
onebar = pkgs.fetchFromGitea {
domain = "git.gay";
@ -76,6 +76,7 @@ in {
addons.privacy-badger
addons.tridactyl
addons.news-feed-eradicator
addons.multi-account-containers
];
};
};

View file

@ -50,10 +50,13 @@ in {
services.gpg-agent.enableFishIntegration = true;
xdg.configFile = lib.mapAttrs' (path: _: {
name = "fish/functions/${path}";
value.source = lib.path.append ./functions path;
}) (builtins.readDir ./functions);
xdg.configFile =
lib.mapAttrs'
(path: _:
lib.nameValuePair
"fish/functions/${path}"
{source = lib.path.append ./functions path;})
(builtins.readDir ./functions);
programs.fish = {
sourcePaths =