2025-08-31 22:46:42 -04:00
|
|
|
{
|
2025-08-31 22:59:47 -04:00
|
|
|
description = "Multi-machine Home Manager (Linux/macOS/NixOS)";
|
2025-08-31 22:46:42 -04:00
|
|
|
|
|
|
|
|
inputs = {
|
|
|
|
|
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
|
|
|
|
|
home-manager.url = "github:nix-community/home-manager";
|
|
|
|
|
home-manager.inputs.nixpkgs.follows = "nixpkgs";
|
|
|
|
|
};
|
|
|
|
|
|
2025-09-01 00:19:02 -04:00
|
|
|
outputs = { self, nixpkgs, ... }@inputs: {
|
2025-08-31 22:46:42 -04:00
|
|
|
homeConfigurations = {
|
2025-09-01 00:19:02 -04:00
|
|
|
mecca = home-manager.lib.homeManagerConfiguration {
|
2025-08-31 22:46:42 -04:00
|
|
|
inherit pkgs;
|
|
|
|
|
modules = [
|
|
|
|
|
./common.nix
|
2025-09-01 00:19:02 -04:00
|
|
|
./mecca/home.nix
|
2025-08-31 22:59:47 -04:00
|
|
|
];
|
|
|
|
|
};
|
2025-08-31 22:46:42 -04:00
|
|
|
};
|
2025-09-01 00:19:02 -04:00
|
|
|
}
|
2025-08-31 22:46:42 -04:00
|
|
|
}
|