mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 04:19:19 -08:00
34 lines
653 B
Nix
34 lines
653 B
Nix
{ config, lib, ... }: let
|
|
inherit (lib.attrsets) listToAttrs nameValuePair;
|
|
inherit (lib.modules) mkMerge;
|
|
in {
|
|
programs.floorp.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";
|
|
};
|
|
};
|
|
};
|
|
}
|
|
|