added stuff
This commit is contained in:
parent
e8d9044d2b
commit
9d0ebdfbd0
907 changed files with 70990 additions and 0 deletions
5
nyx/homes/notashelf/packages/dev/default.nix
Normal file
5
nyx/homes/notashelf/packages/dev/default.nix
Normal file
|
@ -0,0 +1,5 @@
|
|||
{
|
||||
imports = [
|
||||
./packages
|
||||
];
|
||||
}
|
15
nyx/homes/notashelf/packages/dev/packages/default.nix
Normal file
15
nyx/homes/notashelf/packages/dev/packages/default.nix
Normal file
|
@ -0,0 +1,15 @@
|
|||
{pkgs, ...}: {
|
||||
config = {
|
||||
home.packages = with pkgs; [
|
||||
# LaTeX
|
||||
texlive.combined.scheme-full
|
||||
(pkgs.writeShellApplication {
|
||||
name = "pdflatexmk";
|
||||
runtimeInputs = with pkgs; [texlive.combined.scheme-full];
|
||||
text = ''
|
||||
latexmk -pdf "$@" && latexmk -c "$@"
|
||||
'';
|
||||
})
|
||||
];
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue