add typst configs

This commit is contained in:
Schrottkatze 2024-11-29 15:46:11 +01:00
parent 8fb63359d1
commit ffdf893e15
No known key found for this signature in database
2 changed files with 34 additions and 0 deletions

View file

@ -4,6 +4,7 @@
./notifications.nix ./notifications.nix
./terminal.nix ./terminal.nix
./compositing.nix ./compositing.nix
./typst.nix
./panels ./panels
./xmonad ./xmonad
./sway ./sway

View file

@ -0,0 +1,33 @@
{
pkgs,
lib,
...
}: let
packages = {
typst-configs = pkgs.fetchFromGitea {
domain = "forge.katzen.cafe";
owner = "schrottkatze";
repo = "typst-configs";
rev = "3a09cd374f0508c8e0c5d95f5ad7358adc50bafa";
};
flow = pkgs.fetchFromGithub {
owner = "MultisampledNight";
repo = "flow";
rev = "f5c653c706d80145165ec684b217b803a0246e8c";
};
};
mkTypstPath = name: ".local/share/typst/packages/local/${name}/0.1.0";
in {
home.file = {
typst-configs = {
target = mkTypstPath "typst-configs";
source = packages.typst-configs;
recursive = true;
};
flow = {
target = mkTypstPath "flow";
source = packages.flow;
recursive = true;
};
};
}