From 42374eff1f3ca895d631789e38c04f3f10318abb Mon Sep 17 00:00:00 2001 From: oddlama Date: Fri, 22 Dec 2023 01:33:59 +0100 Subject: [PATCH] fix: remove unnecessary module in example --- README.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/README.md b/README.md index 0797f59..cbd2b0d 100644 --- a/README.md +++ b/README.md @@ -15,13 +15,12 @@ will be available. { inputs.extra-modules.url = "github:oddlama/extra-modules"; - outputs = { self, nixpkgs, agenix, agenix-rekey }: { + outputs = { self, nixpkgs, extra-modules }: { # Example system configuration nixosConfigurations.yourhostname = nixpkgs.lib.nixosSystem { system = "x86_64-linux"; modules = [ ./configuration.nix - agenix.nixosModules.default extra-modules.nixosModules.default ]; };