From 2aa004b4565ebcd6cf812c8654c7865005b4b316 Mon Sep 17 00:00:00 2001 From: NotAShelf Date: Sun, 14 Apr 2024 16:57:40 +0300 Subject: [PATCH] flake/modules: remove builtPackage causes evaluation errors --- flake/modules/home-manager.nix | 10 ---------- flake/modules/nixos.nix | 10 ---------- 2 files changed, 20 deletions(-) diff --git a/flake/modules/home-manager.nix b/flake/modules/home-manager.nix index 0a6cd9d..791476e 100644 --- a/flake/modules/home-manager.nix +++ b/flake/modules/home-manager.nix @@ -22,16 +22,6 @@ in { options.programs.neovim-flake = { enable = mkEnableOption "neovim-flake, the extensible neovim-wrapper"; - - builtPackage = mkOption { - type = anything; - default = builtPackage; - internal = true; - description = '' - The built neovim-flake package, wrapped with the user's configuration. - ''; - }; - settings = mkOption { type = attrsOf anything; default = {}; diff --git a/flake/modules/nixos.nix b/flake/modules/nixos.nix index 968c7d4..5dee2c0 100644 --- a/flake/modules/nixos.nix +++ b/flake/modules/nixos.nix @@ -22,16 +22,6 @@ in { options.programs.neovim-flake = { enable = mkEnableOption "neovim-flake, the extensible neovim-wrapper"; - - builtPackage = mkOption { - type = anything; - default = builtPackage; - internal = true; - description = '' - The built neovim-flake package, wrapped with the user's configuration. - ''; - }; - settings = mkOption { type = attrsOf anything; default = {};