mirror of
https://github.com/harivansh-afk/nix.git
synced 2026-04-15 12:03:52 +00:00
switch neovim to vim.pack away from lazy add sandboxagent package to netty update defaults
57 lines
1.3 KiB
Nix
57 lines
1.3 KiB
Nix
{
|
|
description = "Hari's nix 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";
|
|
};
|
|
|
|
openspec = {
|
|
url = "github:Fission-AI/OpenSpec";
|
|
};
|
|
|
|
nix-homebrew = {
|
|
url = "github:zhaofengli-wip/nix-homebrew";
|
|
};
|
|
|
|
disko = {
|
|
url = "github:nix-community/disko";
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
|
|
neovim-nightly = {
|
|
url = "github:nix-community/neovim-nightly-overlay";
|
|
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
|
|
];
|
|
};
|
|
}
|