flake/flake.nix
Arthur Wambst 7fbe5c0acc testing
2025-02-21 19:27:01 +01:00

11 lines
270 B
Nix

# flake.nix
{
description = "My own Neovim flake";
inputs = {
nvim.url = "git+https://gitea.napo280.fr/napo280/flake-nvim";
};
outputs = { self, ... }@inputs: {
nixosModules.neovim = inputs.nvim.nixosModules.neovim; # Import du module Neovim
};
}