aboutsummaryrefslogtreecommitdiffstats
path: root/modules/hm/sils/iamb.nix
diff options
context:
space:
mode:
Diffstat (limited to 'modules/hm/sils/iamb.nix')
-rw-r--r--modules/hm/sils/iamb.nix38
1 files changed, 0 insertions, 38 deletions
diff --git a/modules/hm/sils/iamb.nix b/modules/hm/sils/iamb.nix
deleted file mode 100644
index 2c6932a..0000000
--- a/modules/hm/sils/iamb.nix
+++ /dev/null
@@ -1,38 +0,0 @@
-{
- config,
- lib,
- ...
-}: let
- cfg = config.sils.iamb;
-in {
- options = {
- sils.iamb.enable = lib.mkEnableOption "iamb, a matrix tui client";
- };
- config = lib.mkIf cfg.enable {
- programs.iamb = {
- enable = true;
- settings = {
- profiles = {
- ljs = {
- user_id = "@sils:linksjugend-solid.de";
- url = "https://matrix.bak-it.de";
- };
- vhack = {
- user_id = "@sils:vhack.eu";
- url = "https://matrix.vhack.eu";
- };
- };
- settings = {
- notifications.enabled = true;
- image_preview.protocol = {
- type = "kitty";
- size = {
- height = 10;
- width = 66;
- };
- };
- };
- };
- };
- };
-}