Environment
This commit is contained in:
3
.gitignore
vendored
Normal file
3
.gitignore
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
*.pdf
|
||||
latex.out/
|
||||
.direnv
|
||||
24
flake.lock
generated
Normal file
24
flake.lock
generated
Normal file
@@ -0,0 +1,24 @@
|
||||
{
|
||||
"nodes": {
|
||||
"nixpkgs": {
|
||||
"locked": {
|
||||
"lastModified": 1695830400,
|
||||
"narHash": "sha256-gToZXQVr0G/1WriO83olnqrLSHF2Jb8BPcmCt497ro0=",
|
||||
"path": "/nix/store/8lg5579v1k5mc63ypzfagrcl8l32x3bh-source",
|
||||
"rev": "8a86b98f0ba1c405358f1b71ff8b5e1d317f5db2",
|
||||
"type": "path"
|
||||
},
|
||||
"original": {
|
||||
"id": "nixpkgs",
|
||||
"type": "indirect"
|
||||
}
|
||||
},
|
||||
"root": {
|
||||
"inputs": {
|
||||
"nixpkgs": "nixpkgs"
|
||||
}
|
||||
}
|
||||
},
|
||||
"root": "root",
|
||||
"version": 7
|
||||
}
|
||||
10
flake.nix
Normal file
10
flake.nix
Normal file
@@ -0,0 +1,10 @@
|
||||
{
|
||||
description = "";
|
||||
outputs = { self, nixpkgs }: let pkgs = nixpkgs.legacyPackages.aarch64-darwin; lib = nixpkgs.lib; in {
|
||||
devShells.aarch64-darwin.default = pkgs.mkShell {
|
||||
packages = with pkgs; [latexrun texlive.combined.scheme-full entr texlab (writeShellScriptBin "livetex" ''
|
||||
${pkgs.coreutils}/bin/ls *.tex | ${entr}/bin/entr -c -s "${latexrun}/bin/latexrun -Wall '$1' && echo Compiled at \$(${pkgs.coreutils}/bin/date)"
|
||||
'')];
|
||||
};
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user