1
0
Fork 0

Add Element Theme

This commit is contained in:
Malte Brandy 2022-01-18 23:54:46 +01:00
parent 3c91af0d33
commit 3f3478d66a

View file

@ -5,5 +5,16 @@
inherit (pkgs) discord signal-desktop tdesktop element-desktop;
weechat = pkgs.writeShellScriptBin "weechat" "ssh -t hera 'TMUX_TMPDIR=/run/user/1000 tmux -L weechat attach'";
};
xdg.configFile."Element/config.json".text = builtins.toJSON { showLabsSettings = true; };
xdg.configFile."Element/config.json".text = builtins.toJSON {
settingsDefaults.custom_themes = [
{
name = "My Theme";
colors = {
primary-color = "#000040";
accent-color = "#4040ff";
};
}
];
showLabsSettings = true;
};
}