aboutsummaryrefslogtreecommitdiff
path: root/modules/home-manager/typst.nix
diff options
context:
space:
mode:
authorschererleander <leander@schererleander.de>2025-11-03 00:19:09 +0100
committerschererleander <leander@schererleander.de>2025-11-03 00:19:09 +0100
commit03f03eee9f8417b540f0d1b0d1e8a4626d455ac3 (patch)
treebf7b8a76461e8a469b37197d9b6a78cb16dd2fb8 /modules/home-manager/typst.nix
parent9e2849e72a9a46515a9141226a0145fdbb5090c8 (diff)
chore: reorganize modules into subcategories
Diffstat (limited to 'modules/home-manager/typst.nix')
-rw-r--r--modules/home-manager/typst.nix16
1 files changed, 0 insertions, 16 deletions
diff --git a/modules/home-manager/typst.nix b/modules/home-manager/typst.nix
deleted file mode 100644
index c06211b..0000000
--- a/modules/home-manager/typst.nix
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- config,
- pkgs,
- lib,
- ...
-}:
-
-{
- options.typst.enable = lib.mkEnableOption "Setup typst";
- config = lib.mkIf config.typst.enable {
- home.packages = with pkgs; [
- typst
- typst-fmt
- ];
- };
-}