flake-nvim/modules/nvim/nvim.nix
Arthur Wambst 300d6d1b5c tests
2025-02-22 14:03:27 +01:00

13 lines
334 B
Nix

{ config, pkgs, lib, inputs, ... }:
with lib; {
options.nvim = {
enable = lib.mkEnableOption "Enable Neovim";
};
config = lib.mkIf config.nvim.enable {
environment.systemPackages = [ pkgs.neovim ];
# Import the theme module automatically if it's available
imports = builtins.concatLists [ ./theme.nix ];
};
}