This commit is contained in:
Arthur Wambst 2025-02-22 15:04:30 +01:00
parent 91ecfc203f
commit af125b8139
2 changed files with 2 additions and 2 deletions

View File

@ -20,6 +20,6 @@
}; };
outputs = { self, nixpkgs, neovim, ... }@inputs: { outputs = { self, nixpkgs, neovim, ... }@inputs: {
nixosModules.neovim = import ./modules/nvim/nvim.nix { inherit inputs; }; nixosModules.neovim = import ./modules/nvim/nvim.nix;
}; };
} }

View File

@ -1,7 +1,7 @@
{ config, pkgs, lib, inputs, ... }: { config, pkgs, lib, inputs, ... }:
with lib; { with lib; {
imports = [ ./theme.nix ]; imports = [ ./theme.nix ];
options.nvim = { options.neovim = {
enable = lib.mkEnableOption "Enable Neovim"; enable = lib.mkEnableOption "Enable Neovim";
default = true; default = true;
}; };