flake/flake.nix
Arthur Wambst 7e27df2bac uiui
2025-02-25 15:36:31 +01:00

16 lines
329 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 = {config, pkgs, ...} :
{
environment.systemPackages = [
inputs.neovim.packages.${pkgs.system}.neovim
];
};
};
}