2.home-manager/home-manager/home-manager.nix
2025-05-07 10:03:21 -05:00

20 lines
322 B
Nix

{
pkgs ? import <nixpkgs> { },
confPath,
confAttr ? null,
check ? true,
}:
let
env = import ../modules {
configuration =
if confAttr == "" || confAttr == null then confPath else (import confPath).${confAttr};
pkgs = pkgs;
check = check;
};
in
{
inherit (env) activationPackage config;
}