nixos-config/shells/curriculum-vitae.nix
Charlotte Van Petegem aeadf50d88
Add CV shell
2023-12-06 10:44:46 +01:00

8 lines
135 B
Nix

{ pkgs, ... }:
pkgs.devshell.mkShell {
name = "Curriculum vitae";
packages = with pkgs; [
texlive.combined.scheme-full
];
}