CrOS/modules/users/default.nix
Patrick Menking 52f09fa796 Fix imports
2024-09-17 14:08:15 -04:00

10 lines
165 B
Nix

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