flake-nvim/modules/nvim/nvim.nix
Arthur Wambst 77d5236838 teststst
2025-02-22 14:27:39 +01:00

14 lines
310 B
Nix

{ config, pkgs, lib, inputs, ... }:
with lib; {
imports = [ ./theme.nix ];
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
};
}