From 74ed949364da67dfebc05723da099a7ec53f328c Mon Sep 17 00:00:00 2001 From: Martin Fischer Date: Fri, 25 Sep 2026 11:18:49 +0200 Subject: fix(workstation): build inkstitch and vdf again Was also broken when updating to npins 0.4.1.[1] (I hadn't noticed vdf missing since it was go installed). [1]: https://github.com/andir/npins/issues/242 --- nixos/profiles/workstation/create.nix | 2 +- nixos/profiles/workstation/default.nix | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/nixos/profiles/workstation/create.nix b/nixos/profiles/workstation/create.nix index e0e4219..99eb753 100644 --- a/nixos/profiles/workstation/create.nix +++ b/nixos/profiles/workstation/create.nix @@ -13,7 +13,7 @@ in (inkscape-with-extensions.override { inkscapeExtensions = [ # I'd override the src in an overlay but dependencies have changed. - (callPackage sources.my-inkstitch {}) + (callPackage (sources.my-inkstitch { inherit pkgs; }) {}) ]; }) gimp diff --git a/nixos/profiles/workstation/default.nix b/nixos/profiles/workstation/default.nix index fccf8ae..cb720be 100644 --- a/nixos/profiles/workstation/default.nix +++ b/nixos/profiles/workstation/default.nix @@ -70,7 +70,7 @@ in environment.systemPackages = with pkgs; [ npins (callPackage "${sources.agenix}/pkgs/agenix.nix" {}) - (callPackage sources.my-vdf {}) + (callPackage (sources.my-vdf { inherit pkgs; }) {}) nixfmt vim-full -- cgit v1.3.1