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

9 lines
157 B
Nix

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