diff options
Diffstat (limited to 'nixos/profiles/workstation')
| -rw-r--r-- | nixos/profiles/workstation/create.nix | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/nixos/profiles/workstation/create.nix b/nixos/profiles/workstation/create.nix index 1c955a6..06dd72f 100644 --- a/nixos/profiles/workstation/create.nix +++ b/nixos/profiles/workstation/create.nix @@ -1,5 +1,8 @@ { config, pkgs, ... }: +let + sources = import <top/npins>; +in { environment.systemPackages = with pkgs; [ graphviz-nox # for dot @@ -9,7 +12,8 @@ (inkscape-with-extensions.override { inkscapeExtensions = [ - inkscape-extensions.inkstitch + # I'd override the src in an overlay but dependencies have changed. + (callPackage sources.my-inkstitch {}) ]; }) gimp |
