flake/flake.nix
Arthur Wambst 07b57955e6 uiui
2025-02-25 15:37:03 +01:00

16 lines
331 B
Nix

# flake.nix
{
description = "My own Neovim flake";
inputs = {
neovim.url = "git+https://gitea.napo280.fr/napo280/flake-nvim";
};
outputs = { self, ... }@inputs: {
nixosModules.flake = {config, pkgs, ...} :
{
environment.systemPackages = [
inputs.neovim.packages.${pkgs.system}.neovim
];
};
};
}