dotfiles/.config/home-manager/flake.nix

22 lines
513 B
Nix
Raw Normal View History

{
2025-08-31 22:59:47 -04:00
description = "Multi-machine Home Manager (Linux/macOS/NixOS)";
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: {
homeConfigurations = {
2025-09-01 00:19:02 -04:00
mecca = home-manager.lib.homeManagerConfiguration {
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-09-01 00:19:02 -04:00
}
}