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

21 lines
548 B
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 {
settingsDefaults.custom_themes = [
{
name = "My Theme";
colors = {
primary-color = "#000040";
accent-color = "#4040ff";
};
}
];
showLabsSettings = true;
};
2020-05-05 23:40:57 +00:00
}