24 lines
391 B
Nix
24 lines
391 B
Nix
{ inputs, system, ... }:
|
|
|
|
with inputs;
|
|
|
|
let
|
|
pkgs = import nixpkgs {
|
|
inherit system;
|
|
|
|
overlays = [
|
|
inputs.myneovim.overlays.${system}
|
|
inputs.vnetod.overlays.${system}
|
|
(f: p: { nil = inputs.nil.packages.${system}.nil; })
|
|
];
|
|
};
|
|
in
|
|
{
|
|
homeMe = home-manager.lib.homeManagerConfiguration {
|
|
inherit pkgs;
|
|
|
|
modules = [
|
|
../home/home.nix
|
|
];
|
|
};
|
|
}
|