blob: c06211ba06e9e690689c0a1b2bfb8d54238f9472 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
{
config,
pkgs,
lib,
...
}:
{
options.typst.enable = lib.mkEnableOption "Setup typst";
config = lib.mkIf config.typst.enable {
home.packages = with pkgs; [
typst
typst-fmt
];
};
}
|