2020-08-26 08:13:05 +02:00
|
|
|
{
|
|
|
|
description = "Home Manager for Nix";
|
|
|
|
|
|
|
|
outputs = { self, nixpkgs }: rec {
|
|
|
|
nixosModules.home-manager = import ./nixos;
|
|
|
|
|
2020-08-27 18:38:15 +02:00
|
|
|
darwinModules.home-manager = import ./nix-darwin;
|
|
|
|
|
2020-08-26 08:13:05 +02:00
|
|
|
lib = {
|
|
|
|
homeManagerConfiguration = { configuration, system, homeDirectory
|
|
|
|
, username
|
|
|
|
, pkgs ? builtins.getAttr system nixpkgs.outputs.legacyPackages
|
|
|
|
, check ? true }@args:
|
|
|
|
import ./modules {
|
|
|
|
inherit pkgs check;
|
|
|
|
configuration = { ... }: {
|
|
|
|
imports = [ configuration ];
|
|
|
|
home = { inherit homeDirectory username; };
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|