flake/flake.nix
Arthur Wambst 0b05977932 tests
2025-02-22 14:07:44 +01:00

13 lines
303 B
Nix

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