17 lines
216 B
Nix
17 lines
216 B
Nix
|
{ inputs, system }:
|
||
|
|
||
|
with inputs;
|
||
|
|
||
|
let
|
||
|
pkgs = import nixpkgs { inherit system; };
|
||
|
in
|
||
|
{
|
||
|
homeMe = home-manager.lib.homeManagerConfiguration {
|
||
|
inherit pkgs;
|
||
|
|
||
|
modules = [
|
||
|
../home/home.nix
|
||
|
];
|
||
|
};
|
||
|
}
|