Improved readability of the code

This commit is contained in:
Serĉanto de Scio 2019-09-06 11:19:03 +10:00
parent 9c92bef2d9
commit 650d470f08
Signed by: sercanto
GPG key ID: A4122FF3971B6865

View file

@ -54,10 +54,12 @@
};
environment.systemPackages = with pkgs; [
((python37.withPackages (ps: with ps; [
docutils # Provides rendering of ReStructured Text files
pygments # Provides syntax highlighting
])).override({}))
((
python37.withPackages (ps: with ps; [
docutils # Provides rendering of ReStructured Text files
pygments # Provides syntax highlighting
])
))
];
}