26 lines
437 B
Nix
26 lines
437 B
Nix
{ inputs, system, ... }:
|
|
|
|
with inputs;
|
|
|
|
let
|
|
pkgs = import nixpkgs {
|
|
inherit system;
|
|
|
|
overlays = [
|
|
inputs.wired.overlays.${system}
|
|
inputs.myneovim.overlays.default
|
|
inputs.vnetod.overlay
|
|
inputs.nil.overlays.default
|
|
];
|
|
};
|
|
in
|
|
{
|
|
homeMe = home-manager.lib.homeManagerConfiguration {
|
|
inherit pkgs;
|
|
|
|
modules = [
|
|
inputs.wired.homeManagerModules.default
|
|
../home/home.nix
|
|
];
|
|
};
|
|
}
|