Removed: Neovim Conf

This commit is contained in:
DerGrumpf 2025-03-26 14:23:54 +01:00
parent 4549818099
commit 7874efb0d7
2 changed files with 1 additions and 16 deletions

View File

@ -36,11 +36,6 @@
url = "github:catppuccin/bat"; url = "github:catppuccin/bat";
flake = false; flake = false;
}; };
nvchad4nix = {
url = "github:nix-community/nix4nvchad";
inputs.nixpkgs.follows = "nixpkgs";
};
}; };
outputs = inputs @ { outputs = inputs @ {
@ -62,7 +57,7 @@
m920q = let m920q = let
username = "phil"; username = "phil";
specialArgs = {inherit username; inherit system; inherit inputs;}; specialArgs = {inherit username;};
in in
nixpkgs.lib.nixosSystem { nixpkgs.lib.nixosSystem {
inherit specialArgs; inherit specialArgs;

View File

@ -1,10 +0,0 @@
{config, pkgs, inputs, ...}: {
nixpkgs = {
overlays = [
(final: prev: {
nvchad = inputs.nvchad4nix.packages."${pkgs.system}".nvchad;
})
];
};
}