blob: 06dd72facbaef5e415d660af7059ede548503f8a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
{ config, pkgs, ... }:
let
sources = import <top/npins>;
in
{
environment.systemPackages = with pkgs; [
graphviz-nox # for dot
hugo
typst
(inkscape-with-extensions.override {
inkscapeExtensions = [
# I'd override the src in an overlay but dependencies have changed.
(callPackage sources.my-inkstitch {})
];
})
gimp
krita
];
}
|