feat(nix): initialize flake with basic structure

Add flake.nix with nixpkgs and flake-utils inputs.
This provides the foundation for building a Neovim package
that can be referenced in home-manager configurations.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
0xWheatyz 2026-02-19 18:38:24 -05:00
parent 7c74259c19
commit 86e65eedab
1 changed files with 18 additions and 0 deletions

18
flake.nix Normal file
View File

@ -0,0 +1,18 @@
{
description = "Personal Neovim configuration based on kickstart.nvim";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
flake-utils.url = "github:numtide/flake-utils";
};
outputs = { self, nixpkgs, flake-utils }:
flake-utils.lib.eachDefaultSystem (system:
let
pkgs = nixpkgs.legacyPackages.${system};
in
{
# Outputs will be added in subsequent commits
}
);
}