about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--hm/soispha/pkgs/scripts.nix13
1 files changed, 6 insertions, 7 deletions
diff --git a/hm/soispha/pkgs/scripts.nix b/hm/soispha/pkgs/scripts.nix
index 1341370c..837949be 100644
--- a/hm/soispha/pkgs/scripts.nix
+++ b/hm/soispha/pkgs/scripts.nix
@@ -13,6 +13,7 @@
       src = ./scripts/${path}/${name};
       dependencies = dependencies ++ [pkgs.dash];
     };
+
   aumo-scr = write_script {
     name = "aumo";
     path = "apps";
@@ -23,7 +24,6 @@
     path = "apps";
     dependencies = builtins.attrValues {inherit (pkgs) sane-backends imagemagick coreutils fd;};
   };
-
   dldragon-scr = write_script {
     name = "dldragon";
     path = "small_functions";
@@ -44,12 +44,16 @@
     path = "small_functions";
     dependencies = builtins.attrValues {inherit (pkgs) ncmpc procps;}; # TODO: add mymocp
   };
+  neorg-scr = sysLib.writeShellScriptWithLibraryAndKeepPath {
+    name = "neorg";
+    src = ./scripts/wrappers/neorg;
+    dependencies = [];
+  };
   update-sys-scr = write_script {
     name = "update-sys";
     path = "small_functions";
     dependencies = builtins.attrValues {inherit (pkgs) git git-crypt nixos-rebuild sudo openssh coreutils mktemp gnugrep gnused;};
   };
-
   ll-scr = sysLib.writeShellScriptWithLibraryUnwrapped {
     name = "ll";
     src = ./scripts/wrappers/ll;
@@ -75,11 +79,6 @@
     path = "wrappers";
     dependencies = builtins.attrValues {inherit (pkgs) gawk expect yt-dlp;};
   };
-  neorg-scr = sysLib.writeShellScriptWithLibraryAndKeepPath {
-    name = "neorg";
-    src = ./scripts/wrappers/neorg;
-    dependencies = [];
-  };
 in [
   aumo-scr
   con2pdf-scr