This commit is contained in:
Bryan Ramos 2024-07-17 21:08:05 -04:00
parent 624b4069ac
commit f8e60744da
Signed by: bryan
GPG key ID: 6ABDCD144D6643C8
4 changed files with 20 additions and 4 deletions

View file

@ -6,7 +6,7 @@
${config.user.name} = { ${config.user.name} = {
isNormalUser = true; isNormalUser = true;
extraGroups = config.user.groups extraGroups = config.user.groups
++ [ "video" "audio" "kvm" "libvirtd" ]; ++ [ "video" "audio" "kvm" "libvirtd" "dialout" ];
openssh.authorizedKeys.keys = [ "${config.user.keys.ssh.android}" ]; openssh.authorizedKeys.keys = [ "${config.user.keys.ssh.android}" ];
}; };
}; };
@ -50,6 +50,7 @@
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
vim vim
git git
usbutils
]; ];
fonts.packages = with pkgs; [ fonts.packages = with pkgs; [

View file

@ -139,6 +139,19 @@
url = "https://stackoverflow.com"; url = "https://stackoverflow.com";
tags = [ "dev" "work" "forum" ]; tags = [ "dev" "work" "forum" ];
} }
{
name = "Learning";
bookmarks = [
{
name = "Leetcode";
url = "https://leetcode.com";
}
{
name = "CodeWars";
url = "https://codewars.com";
}
];
}
{ {
name = "Tools"; name = "Tools";
bookmarks = [ bookmarks = [

View file

@ -60,9 +60,10 @@ lsp.setup_servers({
"marksman", "marksman",
"tailwindcss", "tailwindcss",
"bashls", "bashls",
"ccls", "clangd",
"jsonls", "jsonls",
"vuels" "vuels",
"arduino-language-server"
}) })
require("lspconfig").lua_ls.setup(lsp.nvim_lua_ls()) require("lspconfig").lua_ls.setup(lsp.nvim_lua_ls())

View file

@ -6,7 +6,8 @@ let
marksman marksman
sumneko-lua-language-server stylua sumneko-lua-language-server stylua
nodePackages."@tailwindcss/language-server" nodePackages."@tailwindcss/language-server"
ccls clang-tools
arduino-language-server
]; ];
lsp' = with pkgs.nodePackages; [ lsp' = with pkgs.nodePackages; [