diff options
| author | Martin Fischer <martin@push-f.com> | 2026-09-25 11:18:49 +0200 |
|---|---|---|
| committer | Martin Fischer <martin@push-f.com> | 2026-09-25 11:44:26 +0200 |
| commit | 74ed949364da67dfebc05723da099a7ec53f328c (patch) | |
| tree | e1cfed89e783371ca6db27ea9047f585ebb0f51f | |
| parent | bd52b2abf37869505e4a5ecf5b13fe5f0d86fb93 (diff) | |
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
| -rw-r--r-- | nixos/profiles/workstation/create.nix | 2 | ||||
| -rw-r--r-- | 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 |
