Skip to content

Commit f2d76cf

Browse files
committed
feat(programs): add telegram
1 parent d5c7146 commit f2d76cf

File tree

2 files changed

+18
-0
lines changed

2 files changed

+18
-0
lines changed

modules/programs/telegram.nix

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
module-functions,
3+
hm,
4+
pkgs,
5+
...
6+
}:
7+
module-functions.module "programs" "telegram" {
8+
hm.home.packages = with pkgs; [kotatogram-desktop];
9+
}

options/programs/telegram.nix

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
option-functions,
3+
host,
4+
...
5+
}:
6+
with option-functions;
7+
option "programs" "telegram" {
8+
enable = enableOption "telegram" host.isDesktop;
9+
}

0 commit comments

Comments
 (0)