mirror of
https://github.com/buckley310/nixos-config.git
synced 2024-11-09 18:47:02 +00:00
Compare commits
4 commits
a3d33c1a98
...
384de6f9db
Author | SHA1 | Date | |
---|---|---|---|
|
384de6f9db | ||
|
01e1c845d6 | ||
|
d938abc1b0 | ||
|
cac3ad9761 |
4 changed files with 21 additions and 8 deletions
12
flake.lock
12
flake.lock
|
@ -2,11 +2,11 @@
|
||||||
"nodes": {
|
"nodes": {
|
||||||
"impermanence": {
|
"impermanence": {
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1724489415,
|
"lastModified": 1725690722,
|
||||||
"narHash": "sha256-ey8vhwY/6XCKoh7fyTn3aIQs7WeYSYtLbYEG87VCzX4=",
|
"narHash": "sha256-4qWg9sNh5g1qPGO6d/GV2ktY+eDikkBTbWSg5/iD2nY=",
|
||||||
"owner": "nix-community",
|
"owner": "nix-community",
|
||||||
"repo": "impermanence",
|
"repo": "impermanence",
|
||||||
"rev": "c7f5b394397398c023000cf843986ee2571a1fd7",
|
"rev": "63f4d0443e32b0dd7189001ee1894066765d18a5",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
|
@ -17,11 +17,11 @@
|
||||||
},
|
},
|
||||||
"nixpkgs": {
|
"nixpkgs": {
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1725103162,
|
"lastModified": 1726243404,
|
||||||
"narHash": "sha256-Ym04C5+qovuQDYL/rKWSR+WESseQBbNAe5DsXNx5trY=",
|
"narHash": "sha256-sjiGsMh+1cWXb53Tecsm4skyFNag33GPbVgCdfj3n9I=",
|
||||||
"owner": "NixOS",
|
"owner": "NixOS",
|
||||||
"repo": "nixpkgs",
|
"repo": "nixpkgs",
|
||||||
"rev": "12228ff1752d7b7624a54e9c1af4b222b3c1073b",
|
"rev": "345c263f2f53a3710abe117f28a5cb86d0ba4059",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
esbenp.prettier-vscode
|
esbenp.prettier-vscode
|
||||||
jnoortheen.nix-ide
|
jnoortheen.nix-ide
|
||||||
ms-azuretools.vscode-docker
|
ms-azuretools.vscode-docker
|
||||||
ms-python.python
|
# ms-python.python # currently broken (2024-09-16)
|
||||||
redhat.vscode-yaml
|
redhat.vscode-yaml
|
||||||
shardulm94.trailing-spaces
|
shardulm94.trailing-spaces
|
||||||
];
|
];
|
||||||
|
|
|
@ -27,7 +27,12 @@ lspconfig.pyright.setup({
|
||||||
})
|
})
|
||||||
|
|
||||||
----------------------------------------------------------------
|
----------------------------------------------------------------
|
||||||
lspconfig.tsserver.setup({
|
lspconfig.rust_analyzer.setup({
|
||||||
|
capabilities = capabilities,
|
||||||
|
})
|
||||||
|
|
||||||
|
----------------------------------------------------------------
|
||||||
|
lspconfig.ts_ls.setup({
|
||||||
capabilities = capabilities,
|
capabilities = capabilities,
|
||||||
on_attach = noFormat,
|
on_attach = noFormat,
|
||||||
})
|
})
|
||||||
|
|
|
@ -2,6 +2,7 @@
|
||||||
, runCommand
|
, runCommand
|
||||||
|
|
||||||
, black
|
, black
|
||||||
|
, cargo
|
||||||
, efm-langserver
|
, efm-langserver
|
||||||
, errcheck
|
, errcheck
|
||||||
, go
|
, go
|
||||||
|
@ -10,6 +11,9 @@
|
||||||
, nil
|
, nil
|
||||||
, nodePackages
|
, nodePackages
|
||||||
, pyright
|
, pyright
|
||||||
|
, rust-analyzer
|
||||||
|
, rustc
|
||||||
|
, rustfmt
|
||||||
, vscode-langservers-extracted
|
, vscode-langservers-extracted
|
||||||
, yaml-language-server
|
, yaml-language-server
|
||||||
}:
|
}:
|
||||||
|
@ -25,6 +29,7 @@ symlinkJoin {
|
||||||
name = "bck-nvim-tools";
|
name = "bck-nvim-tools";
|
||||||
paths = [
|
paths = [
|
||||||
black
|
black
|
||||||
|
cargo
|
||||||
efm-langserver
|
efm-langserver
|
||||||
errcheck
|
errcheck
|
||||||
go
|
go
|
||||||
|
@ -32,6 +37,9 @@ symlinkJoin {
|
||||||
lua-language-server
|
lua-language-server
|
||||||
nil
|
nil
|
||||||
pyright
|
pyright
|
||||||
|
rust-analyzer
|
||||||
|
rustc
|
||||||
|
rustfmt
|
||||||
vscode-langservers-extracted
|
vscode-langservers-extracted
|
||||||
yaml-language-server
|
yaml-language-server
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue