mirror of
https://github.com/Ahwxorg/nixos-config.git
synced 2026-02-22 21:05:14 +08:00
feat: write simple iamb module
This commit is contained in:
parent
e8b23ec2ac
commit
69cf748a63
2 changed files with 17 additions and 0 deletions
|
|
@ -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
16
modules/home/iamb.nix
Normal 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;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue