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