From 98bba255441950fcfca6eda932dbb5a83467736d Mon Sep 17 00:00:00 2001 From: Spencer Brower Date: Thu, 3 Nov 2022 10:31:25 -0400 Subject: [PATCH] fix: Fixed typo. --- nixos/modules/web-apps/laravel.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/modules/web-apps/laravel.nix b/nixos/modules/web-apps/laravel.nix index f721138..fceacbe 100644 --- a/nixos/modules/web-apps/laravel.nix +++ b/nixos/modules/web-apps/laravel.nix @@ -125,7 +125,7 @@ in } ]; }) - (lib.mkIf (cfg.bashAliases.enalbe == true) { + (lib.mkIf (cfg.bashAliases.enable == true) { programs.bash.shellAliases = { h = "php artisan horizon"; m = "php artisan migrate";