From 7874efb0d7b92963c03c93e2a86676a965196c6e Mon Sep 17 00:00:00 2001
From: DerGrumpf
Date: Wed, 26 Mar 2025 14:23:54 +0100
Subject: [PATCH] Removed: Neovim Conf
---
flake.nix | 7 +------
modules/nvchad.nix | 10 ----------
2 files changed, 1 insertion(+), 16 deletions(-)
delete mode 100644 modules/nvchad.nix
diff --git a/flake.nix b/flake.nix
index c61f2da..ea3875d 100644
--- a/flake.nix
+++ b/flake.nix
@@ -36,11 +36,6 @@
url = "github:catppuccin/bat";
flake = false;
};
-
- nvchad4nix = {
- url = "github:nix-community/nix4nvchad";
- inputs.nixpkgs.follows = "nixpkgs";
- };
};
outputs = inputs @ {
@@ -62,7 +57,7 @@
m920q = let
username = "phil";
- specialArgs = {inherit username; inherit system; inherit inputs;};
+ specialArgs = {inherit username;};
in
nixpkgs.lib.nixosSystem {
inherit specialArgs;
diff --git a/modules/nvchad.nix b/modules/nvchad.nix
deleted file mode 100644
index 9447fd7..0000000
--- a/modules/nvchad.nix
+++ /dev/null
@@ -1,10 +0,0 @@
-{config, pkgs, inputs, ...}: {
-
- nixpkgs = {
- overlays = [
- (final: prev: {
- nvchad = inputs.nvchad4nix.packages."${pkgs.system}".nvchad;
- })
- ];
- };
-}