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

43 lines
1.4 KiB
Nix
Raw Normal View History

2020-05-14 00:11:01 +00:00
{ pkgs, ... }:
2020-05-21 23:13:42 +00:00
{
2022-01-17 13:42:16 +00:00
home.packages = builtins.attrValues
{
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 13:14:54 +00:00
accent-color = "#3daee9";
accent = "#3daee9";
primary-color = "#00aff4";
warning-color = "#da4453";
alert = "#da4453";
sidebar-color = "#31363b";
roomlist-background-color = "#2a2e32";
roomlist-text-color = "#b8b9ba";
roomlist-text-secondary-color = "#808182";
roomlist-highlights-color = "#4b4f54";
roomlist-separator-color = "#64686b";
timeline-background-color = "#1b1e20";
timeline-text-color = "#fcfcfc";
secondary-content = "#b8b9ba";
tertiary-content = "#b8b9ba";
timeline-text-secondary-color = "#74828f";
timeline-highlights-color = "#232629";
eventbubble-others-bg = "#232629";
eventbubble-self-bg = "#223b49";
eventbubble-selected-bg = "#2d5c76";
reaction-row-button-selected-bg-color = "#346e8e";
2022-01-18 22:54:46 +00:00
};
}
];
showLabsSettings = true;
};
2020-05-05 23:40:57 +00:00
}