Add: flake.nix to import in nix systems

This commit is contained in:
DuN0z 2025-10-22 07:01:35 +02:00
parent 82641f61be
commit 95354c758e

11
flake.nix Normal file
View file

@ -0,0 +1,11 @@
{
description = "Neovim configuration by DuN0z";
outputs = { self, nixpkgs }: {
# On fournit simplement le dossier comme sortie
nvimConfig = {
type = "path";
path = self;
};
};
}