From 52f09fa796c42121f4320d789e6b742ba513efbe Mon Sep 17 00:00:00 2001 From: Patrick Menking Date: Tue, 17 Sep 2024 14:08:15 -0400 Subject: [PATCH] Fix imports --- modules/users/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/modules/users/default.nix b/modules/users/default.nix index 4305e31..60176fb 100644 --- a/modules/users/default.nix +++ b/modules/users/default.nix @@ -1,10 +1,10 @@ { config, ... }: { - imports = [ + imports = ( if config.users.crow.enable then [./crow.nix] else [] - ) + ); # ++ ( to add more, just move the ; - ]; + }