talks/flake.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
492 B
Nix
Raw Normal View History

2023-01-12 17:07:35 +00:00
{
2024-01-25 15:34:40 +00:00
inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
2023-01-12 17:07:35 +00:00
2024-04-21 22:07:31 +00:00
outputs = { nixpkgs, ... }:
let
system = "x86_64-linux";
pkgs = nixpkgs.legacyPackages.${system};
2023-05-06 11:23:46 +00:00
2024-04-21 22:07:31 +00:00
inherit (pkgs) mkShell nixfmt-classic;
in {
devShells.${system}.default = mkShell {
packages = with pkgs; [
ghostscript
just
pdfpc
python310Packages.rst2pdf
tree
];
2023-05-06 11:23:46 +00:00
};
2024-04-21 22:07:31 +00:00
formatter.${system} = nixfmt-classic;
2023-05-06 11:23:46 +00:00
};
2023-01-12 17:07:35 +00:00
}