feat(home-manager/firefox): configure default profile

This commit is contained in:
transcaffeine 2024-12-03 22:00:10 +01:00
parent a0d0477fa2
commit 71f58b12bd
Signed by: transcaffeine
GPG Key ID: 03624C433676E465
2 changed files with 33 additions and 0 deletions

View File

@ -15,4 +15,5 @@
};
home.preferXdgDirectories = true;
programs.firefox = import ./firefox.nix { inherit lib; };
}

View File

@ -0,0 +1,32 @@
{ lib, ... }:
{
profiles.default = {
id = 42;
isDefault = true;
name = "default";
containers = {
personal = {
id = 1;
color = "blue";
icon = "fingerprint";
name = "transcaffeine.me";
};
finallycoffee = {
id = 2;
color = "purple";
icon = "fingerprint";
name = "finally.coffee";
};
};
extensions = [
"uBlock0@raymondhill.net"
"uMatrix@raymondhill.net"
"{c607c8df-14a7-4f28-894f-29e8722976af}"
"default-theme@mozilla.org"
"addon@darkreader.org"
"@testpilot-containers"
"protoots@trans.rights"
];
};
}