feat(home-manager/firefox): configure default profile
This commit is contained in:
parent
a0d0477fa2
commit
71f58b12bd
@ -15,4 +15,5 @@
|
|||||||
};
|
};
|
||||||
|
|
||||||
home.preferXdgDirectories = true;
|
home.preferXdgDirectories = true;
|
||||||
|
programs.firefox = import ./firefox.nix { inherit lib; };
|
||||||
}
|
}
|
||||||
|
32
users/transcaffeine/home-manager/firefox.nix
Normal file
32
users/transcaffeine/home-manager/firefox.nix
Normal 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"
|
||||||
|
];
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user