From 69cf748a634365191bc026ed7382b1033a494917 Mon Sep 17 00:00:00 2001 From: ahwx Date: Fri, 13 Feb 2026 13:59:15 +0100 Subject: [PATCH] feat: write simple `iamb` module --- modules/home/default.azalea.nix | 1 + modules/home/iamb.nix | 16 ++++++++++++++++ 2 files changed, 17 insertions(+) create mode 100644 modules/home/iamb.nix diff --git a/modules/home/default.azalea.nix b/modules/home/default.azalea.nix index 208317b..5b01ee9 100644 --- a/modules/home/default.azalea.nix +++ b/modules/home/default.azalea.nix @@ -4,6 +4,7 @@ [ (import ./git.nix) ] ++ [ (import ./fonts.nix) ] ++ [ (import ./htop.nix) ] + ++ [ (import ./iamb.nix) ] ++ [ (import ./kitty.nix) ] ++ [ (import ./nvim.nix) ] ++ [ (import ./zathura.nix) ] diff --git a/modules/home/iamb.nix b/modules/home/iamb.nix new file mode 100644 index 0000000..9d4e644 --- /dev/null +++ b/modules/home/iamb.nix @@ -0,0 +1,16 @@ +{ + programs.iamb = { + enable = true; + settings = { + profiles.user.user_id = "@liv:liv.town"; + notifications.enabled = false; + image_preview = { + protocol.type = "kitty"; + protocol.size = { + height = 10; + width = 66; + }; + }; + }; + }; +}