This commit is contained in:
Patrick Menking 2024-09-17 14:51:10 -04:00
parent 3961192a29
commit 6dd1591319

View file

@ -1,5 +1,8 @@
{ config, ... }: {
imports = [
./crow/home.nix
];
imports =
(
if config.users.crow.home.enable then
[./crow/home.nix] else []
);
# ++ ( to add more, just move the ;
}