inital commit

This commit is contained in:
zack 2024-05-05 22:04:20 -04:00
commit 191f8bcd51
No known key found for this signature in database
GPG key ID: 5B53E53A9A514DBA
7 changed files with 404 additions and 0 deletions

28
flake.nix Normal file
View file

@ -0,0 +1,28 @@
{
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
systems.url = "github:nix-systems/default";
};
outputs = {
systems,
nixpkgs,
...
} @ inputs: let
eachSystem = f:
nixpkgs.lib.genAttrs (import systems) (
system:
f nixpkgs.legacyPackages.${system}
);
in {
devShells = eachSystem (pkgs: {
default = pkgs.mkShell {
buildInputs = [
pkgs.texlive.combined.scheme-full
pkgs.texlab
pkgs.termpdfpy
];
};
});
};
}