From 95354c758e87cf52e722b224de5fe264db8be3c1 Mon Sep 17 00:00:00 2001 From: DuN0z Date: Wed, 22 Oct 2025 07:01:35 +0200 Subject: [PATCH] Add: flake.nix to import in nix systems --- flake.nix | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 flake.nix diff --git a/flake.nix b/flake.nix new file mode 100644 index 0000000..0693ffc --- /dev/null +++ b/flake.nix @@ -0,0 +1,11 @@ +{ + description = "Neovim configuration by DuN0z"; + + outputs = { self, nixpkgs }: { + # On fournit simplement le dossier comme sortie + nvimConfig = { + type = "path"; + path = self; + }; + }; +}