diff --git a/modules/home/default.nix b/modules/home/default.nix index 230f1f7..069e566 100644 --- a/modules/home/default.nix +++ b/modules/home/default.nix @@ -1,8 +1,5 @@ { config, ... }: { - imports = - ( - if config.users.crow.home.enable then - [./crow/home.nix] else [] - ); - # ++ ( to add more, just move the ; + imports = [ + ./crow/home.nix + ]; }