Skip to content

Commit 5b40aad

Browse files
committed
Initial commit
0 parents  commit 5b40aad

File tree

3 files changed

+81
-0
lines changed

3 files changed

+81
-0
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
/.direnv
2+
/.envrc
3+
/.nvim.lua

flake.lock

Lines changed: 61 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

flake.nix

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
{
2+
inputs = {
3+
flake-utils.url = "github:numtide/flake-utils";
4+
nixpkgs.url = "github:NixOS/nixpkgs/release-25.05";
5+
};
6+
7+
outputs = { self, flake-utils, nixpkgs }:
8+
flake-utils.lib.eachDefaultSystem (system:
9+
let
10+
pkgs = (import nixpkgs) { inherit system; };
11+
in {
12+
devShell = pkgs.mkShell {
13+
buildInputs = with pkgs; [ pandoc pre-commit ];
14+
};
15+
}
16+
);
17+
}

0 commit comments

Comments
 (0)