This commit is contained in:
Arthur Wambst 2025-02-22 14:27:39 +01:00
parent 150800c492
commit 77d5236838

View File

@ -1,5 +1,6 @@
{ config, pkgs, lib, inputs, ... }:
with lib; {
imports = [ ./theme.nix ];
options.nvim = {
enable = lib.mkEnableOption "Enable Neovim";
};
@ -7,6 +8,6 @@ with lib; {
environment.systemPackages = [ pkgs.neovim ];
# Import the theme module automatically if it's available
imports = [ ./theme.nix ];
};
}