infrastructure/home.nix

8 lines
169 B
Nix

{ pkgs, config, lib, ... }:
{
imports = [ ./modules/home ]
++ lib.optional (builtins.pathExists (./private/profile/home))
(import ./private/profile/home);
}