From dd5a104c5c44780103b04c6223a9c41e6e88d520 Mon Sep 17 00:00:00 2001 From: Patrick Menking Date: Tue, 17 Sep 2024 06:46:04 -0400 Subject: [PATCH] If enables for users --- modules/users/default.nix | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/modules/users/default.nix b/modules/users/default.nix index 31b65c3..b9944fb 100644 --- a/modules/users/default.nix +++ b/modules/users/default.nix @@ -1,5 +1,9 @@ -{ +{ config, ... }: { imports = [ + ( + if config.users.crow.enable then ./crow.nix + ); + # ++ ( to add more, just move the ; ]; }