Nix configurations for my homelab
0

Configure Feed

Select the types of activity you want to include in your feed.

modules/typst.nix: move module out of modules/development/

+13 -8
-8
modules/development/default.nix
··· 1 - { ... }: 2 - { 3 - imports = [ 4 - ./roc.nix 5 - ./sh.nix 6 - ./typst.nix 7 - ]; 8 - }
+13
modules/typst.nix
··· 1 + { pkgs, ... }: 2 + { 3 + users.users.mou.packages = with pkgs; [ 4 + tinymist 5 + typst 6 + typstyle 7 + 8 + # Tools for `typp` script 9 + imagemagick 10 + inotify-tools 11 + sioyek 12 + ]; 13 + }