feat: write simple iamb module

This commit is contained in:
ahwx 2026-02-13 13:59:15 +01:00
parent e8b23ec2ac
commit 69cf748a63
2 changed files with 17 additions and 0 deletions

View file

@ -4,6 +4,7 @@
[ (import ./git.nix) ] [ (import ./git.nix) ]
++ [ (import ./fonts.nix) ] ++ [ (import ./fonts.nix) ]
++ [ (import ./htop.nix) ] ++ [ (import ./htop.nix) ]
++ [ (import ./iamb.nix) ]
++ [ (import ./kitty.nix) ] ++ [ (import ./kitty.nix) ]
++ [ (import ./nvim.nix) ] ++ [ (import ./nvim.nix) ]
++ [ (import ./zathura.nix) ] ++ [ (import ./zathura.nix) ]

16
modules/home/iamb.nix Normal file
View file

@ -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;
};
};
};
};
}