Skip to content

Instantly share code, notes, and snippets.

@ngiger
Created September 18, 2025 13:49
Show Gist options
  • Save ngiger/4e6e645c19a92f3877cb9cfa3528f8e9 to your computer and use it in GitHub Desktop.
Save ngiger/4e6e645c19a92f3877cb9cfa3528f8e9 to your computer and use it in GitHub Desktop.
{ pkgs, lib, inputs, ... }:
{
# https://devenv.sh/basics/
env.GREET = "devenv";
# https://devenv.sh/packages/
packages = with pkgs; [ git lyx hunspell hunspellDicts.de_CH hunspellDicts.fr-any hunspellDicts.en_US gimp scribus scribus typst pandoc gist];
enterShell = ''
git --version
'';
# https://typst.app/
# https://lwn.net/Articles/1037577
# https://typst.app/universe/package/tiefletter # Rechnung
# https://typst.app/universe/package/pc-letter
# https://sitandr.github.io/typst-examples-book/book/
# https://tug.org/FontCatalogue https://tug.org/FontCatalogue/calligraphicalfonts.html
# https://www.freekoreanfont.com/
# https://devenv.sh/languages/
# languages.nix.enable = true;
# https://devenv.sh/pre-commit-hooks/
# pre-commit.hooks.shellcheck.enable = true;
# https://devenv.sh/processes/
# processes.ping.exec = "ping example.com";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment