aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--nixos/npins/sources.json12
-rw-r--r--nixos/profiles/workstation/create.nix6
2 files changed, 17 insertions, 1 deletions
diff --git a/nixos/npins/sources.json b/nixos/npins/sources.json
index 2a513e0..52a58b0 100644
--- a/nixos/npins/sources.json
+++ b/nixos/npins/sources.json
@@ -43,6 +43,18 @@
"url": null,
"hash": "02ld2hpl3pmy54bqs8q7m0515lqsyajj9fxrhpf9qm1bjvc4f14w"
},
+ "my-inkstitch": {
+ "type": "Git",
+ "repository": {
+ "type": "Git",
+ "url": "https://git.push-f.com/inkstitch"
+ },
+ "branch": "nix",
+ "submodules": false,
+ "revision": "e9eb05fc7d05009bd31fc0c3f9140f3d584ff932",
+ "url": null,
+ "hash": "00cg48azyf5017sdmw34ldbxjzmhvm0pqbv9xgxls6rrcnr409dc"
+ },
"my-lex-surf": {
"type": "Git",
"repository": {
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