initial commit

This commit is contained in:
2026-02-18 10:26:44 +01:00
commit a8bccc3dea
8 changed files with 1597 additions and 0 deletions

11
shell.nix Normal file
View File

@@ -0,0 +1,11 @@
{ pkgs ? import <nixpkgs> { } }:
let
emacsWithPackages = pkgs.emacs.pkgs.withPackages (epkgs: [
epkgs.org-roam
]);
in
pkgs.mkShell {
buildInputs = [ emacsWithPackages pkgs.git ];
}