system/outputs/home.nix

27 lines
475 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 = [
2022-09-21 13:08:01 +03:00
inputs.wired.overlays.${system}
2022-09-18 14:04:02 +03:00
inputs.myneovim.overlays.${system}
2022-09-18 18:29:40 +03:00
inputs.vnetod.overlays.${system}
(f: p: { nil = inputs.nil.packages.${system}.nil; })
2022-09-17 21:55:13 +03:00
];
};
2022-08-30 00:17:21 +03:00
in
{
homeMe = home-manager.lib.homeManagerConfiguration {
inherit pkgs;
modules = [
2022-09-21 13:08:01 +03:00
inputs.wired.homeManagerModules.default
2022-08-30 00:17:21 +03:00
../home/home.nix
];
};
}