about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--flake.nix1
-rw-r--r--nix/mkSystem.nix5
2 files changed, 5 insertions, 1 deletions
diff --git a/flake.nix b/flake.nix
index 6f1d036..1431c28 100644
--- a/flake.nix
+++ b/flake.nix
@@ -51,6 +51,7 @@
           tools = {
             dnsupdate = import ./tools/dnsupdate { inherit pkgs; };
             govanity = import ./tools/govanity { inherit pkgs; };
+            ipconverter = import ./tools/ipconverter { inherit pkgs; };
           };
 
           users.fcuny = {
diff --git a/nix/mkSystem.nix b/nix/mkSystem.nix
index 88d6f99..eddc813 100644
--- a/nix/mkSystem.nix
+++ b/nix/mkSystem.nix
@@ -15,7 +15,10 @@ inputs.nixpkgs.lib.nixosSystem {
           inputs.emacs-overlay.overlay
           inputs.nur.overlay
           (final: prev: {
-            tools = { gerrit-hook = import ../tools/gerrit-hook final; };
+            tools = {
+              gerrit-hook = import ../tools/gerrit-hook final;
+              ipconverter = import ../tools/ipconverter final;
+            };
           })
         ];
       };