CNCjs and update

This commit is contained in:
Olaf
2026-09-25 12:49:11 +02:00
parent 303bf80633
commit 8b48e295c6
3 changed files with 10 additions and 1 deletions
+1
View File
@@ -14,6 +14,7 @@ _:
"inkscape" "inkscape"
"vcv-rack" "vcv-rack"
"affinity" "affinity"
"CNCjs"
# Communication Tools # Communication Tools
"adium" "adium"
+1 -1
View File
@@ -1,7 +1,7 @@
{ config, pkgs, ... }: { config, pkgs, ... }:
let let
emacsOverlaySha256 = "0h15850dpx3p2jr5g4nv0gir0w9dgml1mqzc5yq8686y246r33br"; emacsOverlaySha256 = "0ph4w9c8si2flsgin17k0xnpkv48q82m7fvrqd8jqw5vlq100rii";
in in
{ {
home-manager.backupFileExtension = "nix-backup"; home-manager.backupFileExtension = "nix-backup";
+8
View File
@@ -9,6 +9,11 @@ let
xdg_configHome = "${config.users.users.${user}.home}/.config"; xdg_configHome = "${config.users.users.${user}.home}/.config";
xdg_dataHome = "${config.users.users.${user}.home}/.local/share"; xdg_dataHome = "${config.users.users.${user}.home}/.local/share";
xdg_stateHome = "${config.users.users.${user}.home}/.local/state"; xdg_stateHome = "${config.users.users.${user}.home}/.local/state";
inkscapeExtensionsHome = "${config.users.users.${user}.home}/Library/Application Support/org.inkscape.Inkscape/config/inkscape/extensions";
hatchFillSource = pkgs.fetchzip {
url = "https://gitlab.com/moini_ink/hatch_fill/-/archive/master/hatch_fill-master.tar.gz";
sha256 = "1m3qhvf158dngg7shwd33xhn3bawn9yxw2srv2k8qjn889wjvi82";
};
in in
{ {
@@ -39,4 +44,7 @@ in
fi fi
''; '';
}; };
"${inkscapeExtensionsHome}/hatch_fill.inx".source = "${hatchFillSource}/hatch_fill.inx";
"${inkscapeExtensionsHome}/hatch_fill.py".source = "${hatchFillSource}/hatch_fill.py";
} }