nix/home.nix
2023-10-02 11:53:39 -05:00

36 lines
846 B
Nix

inputs:
let
overlay = system: final: prev: {
helix = prev.helix // inputs.helix.packages.${system}.helix;
rtx = prev.rtx // inputs.rtx.packages.${system}.rtx;
};
# TODO: be functional - have a mkHome function?
in
{
daniel =
let
system = "x86_64-linux";
pkgs = import inputs.nixpkgs { inherit system; overlays = [ (overlay system) ]; };
in
inputs.home-manager.lib.homeManagerConfiguration {
inherit pkgs;
modules = [
./home/user.nix
./home/linux.nix
];
};
daniel-work =
let
system = "aarch64-darwin";
pkgs = import inputs.nixpkgs { inherit system; overlays = [ (overlay system) ]; };
in
inputs.home-manager.lib.homeManagerConfiguration {
inherit pkgs;
modules = [
./home/user.nix
./home/work.nix
];
};
}