dot.nix/home/users/toph/default.nix

12 lines
223 B
Nix

{
lib,
hostSpec,
...
}:
{
imports = [
(lib.custom.relativeToRoot "home/global/core")
(lib.optionalAttrs (!hostSpec.isServer) ./theme)
(lib.custom.relativeToRoot "home/hosts/${hostSpec.hostName}")
];
}