chore: remove unused inputs and update remaining
This commit is contained in:
parent
0e103b7e10
commit
6ae872a683
4 changed files with 228 additions and 1304 deletions
|
|
@ -14,9 +14,7 @@ let
|
|||
in
|
||||
{
|
||||
options.my.programs.ghostty.enable = mkEnableOption "Ghostty";
|
||||
options.my.programs.ghostty.package = (mkPackageOption pkgs "Ghostty" { }) // {
|
||||
inherit (inputs.ghostty.packages.${pkgs.system}) default;
|
||||
};
|
||||
options.my.programs.ghostty.package = (mkPackageOption pkgs "ghostty" { });
|
||||
options.my.programs.ghostty.settings = mkOption {
|
||||
inherit (format) type;
|
||||
description = ''
|
||||
|
|
|
|||
|
|
@ -2,12 +2,8 @@
|
|||
|
||||
{
|
||||
home-manager.users.moritz.programs.nixvim = {
|
||||
extraPlugins = [
|
||||
(pkgs.vimUtils.buildVimPlugin {
|
||||
pname = "blink-compat";
|
||||
src = inputs.blink-compat;
|
||||
version = lib.my.mkVersionInput inputs.blink-compat;
|
||||
})
|
||||
extraPlugins = with pkgs.vimPlugins; [
|
||||
blink-compat
|
||||
];
|
||||
extraConfigLuaPre = ''
|
||||
require("blink.compat").setup({
|
||||
|
|
@ -19,7 +15,6 @@
|
|||
'';
|
||||
plugins.blink-cmp = {
|
||||
enable = true;
|
||||
package = inputs.blink-cmp.packages.${pkgs.system}.blink-cmp;
|
||||
settings = {
|
||||
keymap = {
|
||||
preset = "default";
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue