aboutsummaryrefslogtreecommitdiff
path: root/nixos/profiles/workstation/create.nix
diff options
context:
space:
mode:
authorMartin Fischer <martin@push-f.com>2025-11-16 11:19:26 +0100
committerMartin Fischer <martin@push-f.com>2025-11-16 11:20:13 +0100
commitad2889e6d62c64d133c1147f247f761b13d6d374 (patch)
tree5dbc6064db9032eaec26357e39eccf2604d8a403 /nixos/profiles/workstation/create.nix
parent7c9096f9cb2bbe1075e2a39c06fc320a95c8b2ba (diff)
deps: use a more recent inkstitch
This includes two already upstreamed contributions from me: 1. fixes trims not being written 2. adding a "rotate on export" file setting
Diffstat (limited to 'nixos/profiles/workstation/create.nix')
-rw-r--r--nixos/profiles/workstation/create.nix6
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