Fix blink.cmp to v1

This commit is contained in:
Thomas Avé 2026-05-08 00:07:20 +07:00
parent e49a542664
commit d16e74a111
Signed by: thomasave
SSH Key Fingerprint: SHA256:bvIbWy6TO9+PdMTPzWy6dqkRlVQ3eSky+vQcc9aRIiE
6 changed files with 14 additions and 13 deletions

View File

@ -15,7 +15,10 @@
};
in {
imports = [
(import ./utils/desktop.nix {inherit inputs config pkgs; scale = 1.2;})
(import ./utils/desktop.nix {
inherit inputs config pkgs;
scale = 1.2;
})
(import ./utils/fzgo_links.nix {inherit config pkgs fzgo_paths;})
];
@ -42,4 +45,7 @@ in {
programs.alacritty.settings.font.size = 13;
programs.kitty.font.size = 13;
systemd.user.services.vicinae.Service.Environment = [
"QT_SCALE_FACTOR=1.5"
];
}

View File

@ -15,7 +15,10 @@
};
in {
imports = [
(import ./utils/desktop.nix {inherit inputs config pkgs;})
(import ./utils/desktop.nix {
inherit inputs config pkgs;
scale = 1.0;
})
(import ./utils/fzgo_links.nix {inherit config pkgs fzgo_paths;})
];

View File

@ -3,14 +3,10 @@ local function is_dap_buffer()
end
return {
{
'saghen/blink.compat',
branch = 'v1',
lazy = true,
opts = {},
},
{
'saghen/blink.cmp',
branch = 'v1',
version = "1.*",
dependencies = {
'rafamadriz/friendly-snippets',
'honza/vim-snippets',
@ -59,7 +55,6 @@ return {
end,
providers = {
dadbod = { name = "Dadbod", module = "vim_dadbod_completion.blink" },
dap = { name = "dap", module = "blink.compat.source" },
avante = {
module = 'blink-cmp-avante',
name = 'Avante',

View File

@ -6,7 +6,4 @@
autoStart = true;
};
};
systemd.user.services.vicinae.Service.Environment = [
"QT_SCALE_FACTOR=1.5"
];
}

View File

@ -11,7 +11,6 @@ in {
imports = [
(import ../Common/default.nix {inherit inputs pkgs config;})
(import ../Common/desktop.nix {inherit inputs pkgs config;})
(import ../Common/nfs.nix {inherit pkgs serverIP;})
(import ../Common/zfs.nix {inherit inputs pkgs config;})
];

View File

@ -12,6 +12,7 @@
boot.initrd.kernelModules = [];
boot.kernelModules = ["kvm-intel"];
boot.extraModulePackages = [];
boot.zfs.forceImportRoot = false;
fileSystems."/" = {
device = "rpool/root";