Add CV shell

This commit is contained in:
Charlotte Van Petegem 2023-12-05 09:24:07 +01:00
parent d38753ee15
commit aeadf50d88
No known key found for this signature in database
GPG key ID: 019E764B7184435A

View file

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