mirror of
https://github.com/harivansh-afk/nix.git
synced 2026-04-15 08:03:44 +00:00
57 lines
1.3 KiB
Nix
57 lines
1.3 KiB
Nix
{
|
|
description = "Rathi's macOS nix-darwin + NixOS + Home Manager config";
|
|
|
|
inputs = {
|
|
nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
|
|
flake-parts.url = "github:hercules-ci/flake-parts";
|
|
|
|
nix-darwin = {
|
|
url = "github:nix-darwin/nix-darwin/master";
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
|
|
home-manager = {
|
|
url = "github:nix-community/home-manager";
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
|
|
googleworkspace-cli = {
|
|
url = "github:googleworkspace/cli";
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
|
|
claudeCode = {
|
|
url = "github:sadjow/claude-code-nix";
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
|
|
agentcomputer-cli = {
|
|
url = "path:/Users/rathi/Documents/GitHub/companion/agentcomputer/apps/cli";
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
|
|
openspec = {
|
|
url = "github:Fission-AI/OpenSpec";
|
|
};
|
|
|
|
nix-homebrew = {
|
|
url = "github:zhaofengli-wip/nix-homebrew";
|
|
};
|
|
|
|
disko = {
|
|
url = "github:nix-community/disko";
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
};
|
|
|
|
outputs =
|
|
inputs@{ flake-parts, ... }:
|
|
flake-parts.lib.mkFlake { inherit inputs; } {
|
|
imports = [
|
|
./modules/nixpkgs.nix
|
|
./modules/devshells.nix
|
|
./modules/hosts/darwin.nix
|
|
./modules/hosts/netty.nix
|
|
];
|
|
};
|
|
}
|