resume/flake.nix

16 lines
418 B
Nix
Raw Normal View History

2023-04-14 21:26:00 +00:00
{
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
flake-utils.url = "github:numtide/flake-utils";
};
outputs = { self, nixpkgs, flake-utils }:
flake-utils.lib.eachDefaultSystem (system:
let pkgs = nixpkgs.legacyPackages.${system};
in {
devShell = pkgs.mkShell {
2023-11-03 13:36:22 +00:00
buildInputs = with pkgs; [ texlive.combined.scheme-full inkscape ];
2023-04-14 21:26:00 +00:00
};
});
}