8 lines
135 B
Nix
8 lines
135 B
Nix
{ pkgs, ... }:
|
|
|
|
pkgs.devshell.mkShell {
|
|
name = "Curriculum vitae";
|
|
packages = with pkgs; [
|
|
texlive.combined.scheme-full
|
|
];
|
|
}
|