1
0
Fork 0
nixos-config/home-manager/roles/chat.nix

42 lines
1.4 KiB
Nix
Raw Normal View History

2022-03-08 01:42:46 +00:00
{pkgs, ...}: {
2022-01-17 13:42:16 +00:00
home.packages = builtins.attrValues
2022-03-08 01:42:46 +00:00
{
inherit (pkgs) discord signal-desktop tdesktop element-desktop;
weechat = pkgs.writeShellScriptBin "weechat" "ssh -t hera 'TMUX_TMPDIR=/run/user/1000 tmux -L weechat attach'";
};
2022-01-18 22:54:46 +00:00
xdg.configFile."Element/config.json".text = builtins.toJSON {
2022-01-19 13:14:54 +00:00
settingDefaults.custom_themes = [
2022-01-18 22:54:46 +00:00
{
name = "My Theme";
2022-01-19 13:14:54 +00:00
is_dark = false;
2022-01-18 22:54:46 +00:00
colors = {
2022-01-19 21:39:52 +00:00
accent-color = "#6060ff";
accent = "#6060ff";
primary-color = "#333399";
2022-01-19 13:14:54 +00:00
warning-color = "#da4453";
alert = "#da4453";
2022-01-19 21:39:52 +00:00
sidebar-color = "#ddddff";
roomlist-background-color = "#eeeeff";
roomlist-text-color = "#00008a";
roomlist-text-secondary-color = "#202099";
roomlist-highlights-color = "#9988ee";
roomlist-separator-color = "#8888aa";
2022-01-19 13:14:54 +00:00
2022-01-19 21:39:52 +00:00
timeline-background-color = "#ffffff";
timeline-text-color = "#000022";
secondary-content = "#333399";
tertiary-content = "#5555aa";
timeline-text-secondary-color = "#222255";
2022-01-20 00:20:12 +00:00
timeline-highlights-color = "#ffeeff";
eventbubble-others-bg = "#eeeeff";
eventbubble-self-bg = "#ccccff";
2022-01-19 21:39:52 +00:00
eventbubble-selected-bg = "#c0c0ff";
reaction-row-button-selected-bg-color = "#ddddff";
2022-01-18 22:54:46 +00:00
};
}
];
showLabsSettings = true;
};
2020-05-05 23:40:57 +00:00
}