From af31c6578880c7a5f3c12318649c01bb24dc36e5 Mon Sep 17 00:00:00 2001 From: Noah Masur <7386960+nmasur@users.noreply.github.com> Date: Tue, 18 Oct 2022 12:17:58 +0000 Subject: [PATCH] fix: generator module references --- generators/aws/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/generators/aws/default.nix b/generators/aws/default.nix index f648c18..6077930 100644 --- a/generators/aws/default.nix +++ b/generators/aws/default.nix @@ -21,9 +21,9 @@ nixos-generators.nixosGenerate { # AWS settings require this permitRootLogin = "prohibit-password"; } - ../hosts/common.nix - ../modules/nixos - ../modules/services/sshd.nix + ../../hosts/common.nix + ../../modules/nixos + ../../modules/services/sshd.nix ] ++ [ # Required to fix diskSize errors during build ({ ... }: { amazonImage.sizeMB = 16 * 1024; })