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 ; - ]; + }