Fix imports

This commit is contained in:
Patrick Menking 2024-09-17 14:08:15 -04:00
parent 65fcf8cd31
commit 52f09fa796

View file

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