feat: add kickstart nixcats

This commit is contained in:
2025-03-04 22:04:04 +02:00
parent 0e0e75eeb6
commit 9eb69a64e5
44 changed files with 1944 additions and 2 deletions

9
old/config/default.nix Normal file
View File

@@ -0,0 +1,9 @@
{ pkgs }:
pkgs.stdenv.mkDerivation {
name = "nvim-config";
src = ./src;
installPhase = ''
mkdir -p $out/
cp -r . $out/
'';
}