diff options
author | Franck Cuny <franck@fcuny.net> | 2022-06-27 18:05:39 -0700 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2022-06-28 07:03:00 -0700 |
commit | b4fc034c623e456eb590a7f9e9761a95afce7131 (patch) | |
tree | 0da3de4d2b5ad322459db0d7f58acf39d8090c53 | |
parent | ref(tools): top level module to manage all the tools (diff) | |
download | world-b4fc034c623e456eb590a7f9e9761a95afce7131.tar.gz |
ref(flake): import tools top-level module
Change-Id: I22fad8e0dcdc7c678ea4d7b9235fa5fe4fcdd84d Reviewed-on: https://cl.fcuny.net/c/world/+/589 Reviewed-by: Franck Cuny <franck@fcuny.net> Tested-by: CI
-rw-r--r-- | flake.nix | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/flake.nix b/flake.nix index 3a1c6e2..c043444 100644 --- a/flake.nix +++ b/flake.nix @@ -48,12 +48,7 @@ packages = pkgs // { inherit home-manager; - tools = { - dnsupdate = import ./tools/dnsupdate { inherit pkgs; }; - govanity = import ./tools/govanity { inherit pkgs; }; - ipconverter = import ./tools/ipconverter { inherit pkgs; }; - git-blame-stats = import ./tools/git-blame-stats { inherit pkgs; }; - }; + tools = import ./tools { inherit pkgs; }; users.fcuny = { blog = import ./users/fcuny/blog { inherit pkgs; }; |