diff options
author | Soispha <soispha@vhack.eu> | 2023-12-12 16:42:26 +0100 |
---|---|---|
committer | Soispha <soispha@vhack.eu> | 2023-12-12 16:45:03 +0100 |
commit | 4dc8091480f4babd851eb99313a9e73187ea3440 (patch) | |
tree | fb33c4e61ae242affcb6d4caf7c94894fca40618 /hm/soispha/pkgs/scripts.nix | |
parent | fix(hm/pkgs/scr/neorg): Use new way to specify completion function (diff) | |
download | nixos-config-4dc8091480f4babd851eb99313a9e73187ea3440.zip |
feat(hm/pkgs/scr/fupdate): Move fupdate in my main config tree
Diffstat (limited to 'hm/soispha/pkgs/scripts.nix')
-rw-r--r-- | hm/soispha/pkgs/scripts.nix | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/hm/soispha/pkgs/scripts.nix b/hm/soispha/pkgs/scripts.nix index e295a587..c801b3f0 100644 --- a/hm/soispha/pkgs/scripts.nix +++ b/hm/soispha/pkgs/scripts.nix @@ -107,6 +107,25 @@ path = "small_functions"; dependencies = builtins.attrValues {inherit (pkgs) git git-crypt nixos-rebuild sudo openssh coreutils mktemp gnugrep gnused;}; }; + fupdate-src = write_script { + name = "fupdate"; + path = "apps"; + dependencies = builtins.attrValues { + inherit + (pkgs) + dash + nix + gnugrep + fd + coreutils + bat # used by batgrep + gnused # required by batgrep + git # needed to fetch through git + git-crypt # needed to unlock git-crypted repos + ; + inherit (pkgs.bat-extras) batgrep; + }; + }; ll-scr = sysLib.writeShellScriptWithLibraryUnwrapped { name = "ll"; src = ./scripts/wrappers/ll; @@ -142,6 +161,7 @@ in [ screenshot_temporary-scr # spodi-scr # # TODO: Reactivate when spotdl builds again <2023-10-31> update-sys-scr + fupdate-src virsh-del-scr yti-scr ] |