Compare commits

..

No commits in common. "64c6149fdec66071d311a960b8edbf32bf80abc5" and "2570f25e11d9e7fa4edce311c2c583f629db7605" have entirely different histories.

6 changed files with 13 additions and 15 deletions

View file

@ -38,7 +38,8 @@
laptop = true;
gpuThermal.enable = false;
cpuThermal = {
thermalZone = 9;
hwmonPathAbs = "/sys/devices/platform/coretemp.0/hwmon/";
inputFilename = "temp1_input";
};
};
xdg.useDistributionPortals = true;

View file

@ -205,10 +205,7 @@ in
type = "lua";
config = ( builtins.readFile ./files/plugins/nvim-k8s-lsp.lua );
}
{
plugin = helm-ls-nvim;
type = "lua";
}
vim-helm
];
};
};

View file

@ -1,8 +1,7 @@
return {
cmd = { 'helm_ls', 'serve' },
filetypes = { 'helm', 'yaml.helm-values' },
single_file_support = true,
root_markers = { 'values.yaml', 'Chart.yaml' },
filetypes = { 'helm' },
root_markers = { 'Chart.yaml' },
capabilities = {
workspace = {
didChangeWatchedFiles = {
@ -19,7 +18,9 @@ return {
showdiagnosticsdirectly = false,
path = "yaml-language-server",
config = {
schemas = {},
schemas = {
kubernetes = "template/**",
},
completion = true,
hover = true,
}

View file

@ -1,6 +1,6 @@
require("nvim-k8s-lsp").setup({
kubernetes_version = "v1.32.8",
kubernetes_version = "v1.32.2",
integrations = {
lualine = true,
lualine = false,
}
})

View file

@ -74,8 +74,8 @@ in
cpuThermal = {
thermalZone = mkOption {
type = types.int or null;
default = null;
type = types.str;
default = "";
description = "CPU thermal hwmon thermal Zone";
};

View file

@ -101,8 +101,7 @@ button:hover{
#battery.critical:not(.charging),
#cpu.critical,
#memory.critical,
#temperature.critical{
#memory.critical{
border-color: @color-critical;
color: @color-critical;
}