system/outputs/home.nix

23 lines
293 B
Nix
Raw Normal View History

2022-09-01 11:17:54 +03:00
{ inputs, system, ... }:
2022-08-30 00:17:21 +03:00
with inputs;
let
2022-09-17 21:55:13 +03:00
pkgs = import nixpkgs {
inherit system;
overlays = [
inputs.myneovim.overlays.${system}
];
};
2022-08-30 00:17:21 +03:00
in
{
homeMe = home-manager.lib.homeManagerConfiguration {
inherit pkgs;
modules = [
../home/home.nix
];
};
}