bluetooth changes, update flakes

This commit is contained in:
root 2026-05-04 08:37:03 -03:00
parent 664eb70e8c
commit 2649174093
No known key found for this signature in database
11 changed files with 92 additions and 896 deletions

View file

@ -29,6 +29,8 @@ in
viAlias = true;
vimAlias = false;
vimdiffAlias = true;
withPython3 = false;
withRuby = false;
plugins = with pkgs.vimPlugins; [
{
plugin = auto-session;
@ -438,12 +440,10 @@ in
}
vim-fugitive
];
extraConfig = ''
colorscheme ${cfg.colorscheme}
'';
initLua = ''
${builtins.readFile ./settings.lua}
${builtins.replaceStrings [ "@HOSTNAME@" ] [ cfg.hostname ] (builtins.readFile ./plugins.lua)}
vim.cmd.colorscheme("${cfg.colorscheme}")
require("custom")
'';
};