mirror of
https://github.com/nix-community/home-manager.git
synced 2025-11-21 09:49:39 +01:00
15 lines
321 B
Nix
15 lines
321 B
Nix
{
|
|
programs.pandoc = {
|
|
enable = true;
|
|
|
|
citationStyles = [ ./example.csl ];
|
|
};
|
|
|
|
test.stubs.pandoc = import ./stub.nix;
|
|
|
|
nmt.script = ''
|
|
assertFileExists home-files/.local/share/pandoc/csl/example.csl
|
|
assertFileContent home-files/.local/share/pandoc/csl/example.csl \
|
|
${./example.csl}
|
|
'';
|
|
}
|