CrOS/modules/home/default.nix
Patrick Menking cc62487902 Maybe this?
2024-09-17 14:44:32 -04:00

8 lines
169 B
Nix

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