CrOS/modules/users/default.nix
2024-09-17 14:06:59 -04:00

10 lines
167 B
Nix

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