CrOS/modules/users/default.nix
2024-09-17 14:05:39 -04:00

10 lines
168 B
Nix

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