about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorSoispha <soispha@vhack.eu>2023-10-01 13:51:42 +0200
committerSoispha <soispha@vhack.eu>2023-10-01 13:54:52 +0200
commit9e3315ce236429c81b0b150b62c18228c80ff25d (patch)
tree2ec622cec4602f4a789f5a995210b86e56ce70a8
parentfeat(hm/conf/taskwarrior): Add first config for neorg ⇄ taskwarrior interop (diff)
downloadnixos-config-9e3315ce236429c81b0b150b62c18228c80ff25d.tar.gz
nixos-config-9e3315ce236429c81b0b150b62c18228c80ff25d.zip
style(hm/pkgs/scripts): Reorder alphabetically
Diffstat (limited to '')
-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