diff options
author | Franck Cuny <franck@fcuny.net> | 2022-06-16 17:20:22 -0700 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2022-06-16 17:22:13 -0700 |
commit | 9d8c62a6e1f28491377b7000a6505c08630dc48c (patch) | |
tree | 046809bcc5a8ccbf58d47c5d2c36d9aa4aed5542 /home/scripts | |
parent | docs(tools/govanity): update instructions (diff) | |
download | world-9d8c62a6e1f28491377b7000a6505c08630dc48c.tar.gz |
ref(scripts): remove the module for scripts
The scripts should be part of other modules. If there's no good place for them, they should be part of the packages module. Change-Id: Ic6c678fbe981444848a0ac7015c6c2e450f3b1c1 Reviewed-on: https://cl.fcuny.net/c/world/+/424 Tested-by: CI Reviewed-by: Franck Cuny <franck@fcuny.net>
Diffstat (limited to 'home/scripts')
-rw-r--r-- | home/scripts/bc-to-nas.nix | 14 | ||||
-rw-r--r-- | home/scripts/default.nix | 5 | ||||
-rw-r--r-- | home/scripts/perf-flamegraph.nix | 23 |
3 files changed, 0 insertions, 42 deletions
diff --git a/home/scripts/bc-to-nas.nix b/home/scripts/bc-to-nas.nix deleted file mode 100644 index efa95d2..0000000 --- a/home/scripts/bc-to-nas.nix +++ /dev/null @@ -1,14 +0,0 @@ -{ lib, pkgs, ... }: -let - bc-to-nas = pkgs.writeShellScriptBin "bc-to-nas" '' - set -euo pipefail - - ALBUM_PATH="''${1}" - ALBUM_NAME=$(basename "''${ALBUM_PATH}") - NAS=$(${pkgs.tailscale}/bin/tailscale status --json | ${pkgs.jq}/bin/jq -r '.Peer | map(select(.HostName == "tahoe"))[0].TailscaleIPs[0]') - - scp "''${ALBUM_PATH}" "''${NAS}:~/import/album.zip" - ssh "''${NAS}" bc-to-beet ~/import/album.zip - ''; -in -{ config = { home.packages = with pkgs; [ bc-to-nas ]; }; } diff --git a/home/scripts/default.nix b/home/scripts/default.nix deleted file mode 100644 index 741bade..0000000 --- a/home/scripts/default.nix +++ /dev/null @@ -1,5 +0,0 @@ -{ ... }: - -{ - imports = [ ./perf-flamegraph.nix ./bc-to-nas.nix ]; -} diff --git a/home/scripts/perf-flamegraph.nix b/home/scripts/perf-flamegraph.nix deleted file mode 100644 index b974e6b..0000000 --- a/home/scripts/perf-flamegraph.nix +++ /dev/null @@ -1,23 +0,0 @@ -{ pkgs, config, ... }: -let - perf-flamegraph-process = - pkgs.writeShellScriptBin "perf-flamegraph-process" '' - set -euo pipefail - - OUT_DIR="''${HOME}/workspace/tmp/flamegraph" - OUT_SVG="''${OUT_DIR}/$(date +%y%m%d-%H%M%S).svg" - - mkdir -p ''${OUT_DIR} - - ${pkgs.linuxPackages.perf}/bin/perf record -g --call-graph dwarf -F max "$@" - ${pkgs.linuxPackages.perf}/bin/perf script \ - | ${pkgs.flamegraph}/bin/stackcollapse-perf.pl \ - | ${pkgs.flamegraph}/bin/flamegraph.pl > "''${OUT_SVG}" - ''; -in -{ - config = { - home.packages = with pkgs; [ flamegraph perf-flamegraph-process ]; - }; -} - |