From 24828da3731920277c08fb7a049e6f9f7827715b Mon Sep 17 00:00:00 2001 From: Jordan Holt Date: Fri, 15 Aug 2025 20:18:32 +0100 Subject: [PATCH] flake.nix: add agenix-rekey and nix-topology --- flake.nix | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/flake.nix b/flake.nix index 89b7b29..3a959bc 100644 --- a/flake.nix +++ b/flake.nix @@ -70,6 +70,12 @@ inputs.nixpkgs.follows = "nixpkgs"; }; + nix-topology = { + url = "github:oddlama/nix-topology"; + inputs.nixpkgs.follows = "nixpkgs"; + inputs.pre-commit-hooks.follows = "pre-commit-hooks"; + }; + pre-commit-hooks = { url = "github:cachix/git-hooks.nix"; inputs.nixpkgs.follows = "nixpkgs"; @@ -94,7 +100,9 @@ }: flake-parts.lib.mkFlake { inherit inputs; } { imports = [ + inputs.agenix-rekey.flakeModule inputs.pre-commit-hooks.flakeModule + inputs.nix-topology.flakeModule ./nix/hosts.nix ];