feat(home:firefox): add initial custom firefox css

This commit is contained in:
ooks-io 2024-08-02 21:12:51 +12:00
parent ad469dd8e2
commit 803ecd462d
3 changed files with 193 additions and 1 deletions

View file

@ -35,6 +35,8 @@ in {
enable = true;
nativeMessagingHosts = [pkgs.tridactyl-native];
profiles.${admin.name} = {
id = 0;
isDefault = true;
extensions = with addons; [
ublock-origin
darkreader
@ -42,9 +44,17 @@ in {
# onepassword-password-manager # cannot get this to work unfree issue.
];
settings = import ./settings/ooksJs.nix;
userChrome = import ./theme/penguinFox.nix;
userChrome = import ./theme/ooksfox.nix;
userContent = import ./theme/penguinFoxContent.nix;
};
profiles.testing = {
id = 1;
extensions = with addons; [
ublock-origin
tridactyl
darkreader
];
};
};
})