CrOS/modules/home/default.nix
Patrick Menking 6dd1591319 Test
2024-09-17 14:51:10 -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 ;
}