steal from MaxMur

Signed-off-by: unexplrd <unexplrd@linerds.us>
This commit is contained in:
2025-04-03 17:57:49 +03:00
parent f31ca59f58
commit 211e509628
11 changed files with 94 additions and 84 deletions

View File

@ -1,15 +1,16 @@
{
pkgs,
# pkgs-51b85c,
lib,
config,
lib,
pkgs,
...
}: {
}: let
inherit (lib) mkIf mkEnableOption;
in {
options = {
editor.neovim.enable =
lib.mkEnableOption "enable neovim text editor";
mkEnableOption "enable neovim text editor";
};
config = lib.mkIf config.editors.neovim.enable {
config = mkIf config.editors.neovim.enable {
# stylix.targets.nixvim.enable = true;
home.packages = with pkgs; [neovide];
programs.nixvim = {