mirror of
https://github.com/itme-brain/nixos.git
synced 2026-03-24 08:39:42 -04:00
updates
This commit is contained in:
parent
624b4069ac
commit
f8e60744da
4 changed files with 20 additions and 4 deletions
|
|
@ -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; [
|
||||||
|
|
|
||||||
|
|
@ -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 = [
|
||||||
|
|
|
||||||
|
|
@ -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())
|
||||||
|
|
|
||||||
|
|
@ -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; [
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue