mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 04:19:19 -08:00
30 lines
542 B
Nix
30 lines
542 B
Nix
_: {
|
|
programs.firefox.profiles.main = {
|
|
containersForce = true;
|
|
containers = {
|
|
main = {
|
|
name = "Primary";
|
|
id = 0;
|
|
color = "turquoise";
|
|
icon = "pet";
|
|
};
|
|
gay = {
|
|
name = "Gay";
|
|
id = 1;
|
|
color = "purple";
|
|
icon = "pet";
|
|
};
|
|
work = {
|
|
name = "Work";
|
|
id = 2;
|
|
color = "pink";
|
|
icon = "briefcase";
|
|
};
|
|
banking = {
|
|
name = "Banking";
|
|
id = 3;
|
|
color = "turquoise";
|
|
};
|
|
};
|
|
};
|
|
}
|