This commit is contained in:
Arthur Wambst 2025-02-25 15:50:09 +01:00
parent b494a2cc28
commit 4b0d08edf2

View File

@ -7,12 +7,17 @@
}; };
neovim.url = "git+https://gitea.napo280.fr/napo280/flake-nvim"; neovim.url = "git+https://gitea.napo280.fr/napo280/flake-nvim";
}; };
outputs = { self, nixpkgs, ... }@inputs: { outputs = { self, nixpkgs, flake-nvim, flake-python, ... }:
nixosModules.flake = {config, pkgs, ...} :
{ {
environment.systemPackages = [ nixosConfigurations.mySystem = nixpkgs.lib.nixosSystem {
inputs.neovim system = "x86_64-linux";
# On assemble les modules provenant des différents flakes
modules = [
flake-nvim.nixosModules.neovim
]; ];
# Si besoin, on peut ajouter d'autres modules locaux ici
}; };
}; };
} }