From 86e65eedab11fe9ce7c89af3bce39f418b9b1150 Mon Sep 17 00:00:00 2001 From: 0xWheatyz Date: Thu, 19 Feb 2026 18:38:24 -0500 Subject: [PATCH] feat(nix): initialize flake with basic structure MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 --- flake.nix | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 flake.nix diff --git a/flake.nix b/flake.nix new file mode 100644 index 00000000..9c1613d8 --- /dev/null +++ b/flake.nix @@ -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 + } + ); +}