infrastructure/config/home.nix
2021-03-05 00:36:51 +00:00

10 lines
206 B
Nix

{ pkgs, config, lib, witch, ... }:
let
homeModules = witch.modList {
modulesDir = ./profiles;
defaultFile = "home.nix";
};
in {
imports = lib.attrValues homeModules ++ [ ../modules/home ];
}