diff options
author | Franck Cuny <franck@fcuny.net> | 2024-03-06 06:19:29 -0800 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2024-03-06 06:19:29 -0800 |
commit | c0b9780594366f9256b6f46ac0955d70281c38b6 (patch) | |
tree | 2e717c3107f010af8c8afcb06cf7866e92b52f4e /tools | |
parent | add configuration for my work machine (diff) | |
download | world-c0b9780594366f9256b6f46ac0955d70281c38b6.tar.gz |
install my own scripts
This is the first step to re-enable installing custom scripts. The next step will be to rename `tools` to `packages`, and then if needed I will be able to support overlays.
Diffstat (limited to 'tools')
-rw-r--r-- | tools/default.nix | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/tools/default.nix b/tools/default.nix index cc20040..8e537c9 100644 --- a/tools/default.nix +++ b/tools/default.nix @@ -1,10 +1,10 @@ { pkgs, ... }: pkgs.lib.makeScope pkgs.newScope (pkgs: { - dnsmasq-to-html = pkgs.callPackage ./dnsmasq-leases-html { }; - git-blame-stats = pkgs.callPackage ./git-blame-stats { }; - git-broom = pkgs.callPackage ./git-broom { }; - ipconverter = pkgs.callPackage ./ipconverter { }; - perf-flamegraph-pid = pkgs.callPackage ./perf-flamegraph-pid { }; + # dnsmasq-to-html = pkgs.callPackage ./dnsmasq-leases-html { }; + # git-blame-stats = pkgs.callPackage ./git-blame-stats { }; + # git-broom = pkgs.callPackage ./git-broom { }; + # ipconverter = pkgs.callPackage ./ipconverter { }; + # perf-flamegraph-pid = pkgs.callPackage ./perf-flamegraph-pid { }; seqstat = pkgs.callPackage ./seqstat { }; }) |