From e18ecce21609d7a27a97d9576cb0492262c7a41e Mon Sep 17 00:00:00 2001 From: Victor Date: Mon, 31 Oct 2022 13:05:45 +0100 Subject: [PATCH] fix typo --- nixos/common/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nixos/common/default.nix b/nixos/common/default.nix index 5ba21f4..ae72ddd 100644 --- a/nixos/common/default.nix +++ b/nixos/common/default.nix @@ -1,7 +1,7 @@ { inputs, lib, config, ... }: { # This file deals with everything requiring `inputs`, the rest being delagated to `common.nix` # this is because we can't import inputs from all contexts as that can lead to infinite recursion. - import = [ + imports = [ ./common.nix inputs.vault-secrets.nixosModules.vault-secrets ]; @@ -17,4 +17,4 @@ vaultAddress = "http://${server}.${domain}:8200/"; approlePrefix = "${domain}-${hostName}"; }; -} \ No newline at end of file +}