Compare commits

...

2 Commits

Author SHA1 Message Date
Giulio De Pasquale
9b309a53de helix: added additional python pkgs 2023-10-01 02:32:30 +02:00
Giulio De Pasquale
ea85596695 flake: lock update 2023-10-01 02:32:00 +02:00
2 changed files with 16 additions and 9 deletions

12
flake.lock generated
View File

@ -23,11 +23,11 @@
}, },
"nixos-unstable": { "nixos-unstable": {
"locked": { "locked": {
"lastModified": 1695145219, "lastModified": 1695830400,
"narHash": "sha256-Eoe9IHbvmo5wEDeJXKFOpKUwxYJIOxKUesounVccNYk=", "narHash": "sha256-gToZXQVr0G/1WriO83olnqrLSHF2Jb8BPcmCt497ro0=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "5ba549eafcf3e33405e5f66decd1a72356632b96", "rev": "8a86b98f0ba1c405358f1b71ff8b5e1d317f5db2",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -39,11 +39,11 @@
}, },
"nixpkgs": { "nixpkgs": {
"locked": { "locked": {
"lastModified": 1695485037, "lastModified": 1696092309,
"narHash": "sha256-kK8+EqYjTR6e9ATku0ElcM2s0WpxppmHi1ORQyHwfBE=", "narHash": "sha256-2+LLZ+75W0kqs9jI/X8hBAYcDtmcZUj3aNdlx13HeTA=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "7afc7418b73a085596824353e73efe1862b4fe6b", "rev": "05b4913f8edaa8814b29f51805c564256e77804d",
"type": "github" "type": "github"
}, },
"original": { "original": {

View File

@ -1,5 +1,13 @@
{ config, pkgs, ... }: { pkgs, ... }:
let
pythonPkgs = with pkgs.python3Packages; [
python-lsp-server
pyflakes
rope
yapf
];
in
{ {
home = { home = {
sessionVariables = { sessionVariables = {
@ -48,12 +56,11 @@
clang-tools clang-tools
rust-analyzer rust-analyzer
nil nil
python310Packages.python-lsp-server
texlab texlab
nodePackages.vscode-langservers-extracted nodePackages.vscode-langservers-extracted
nodePackages.typescript nodePackages.typescript
nodePackages.svelte-language-server nodePackages.svelte-language-server
nixpkgs-fmt nixpkgs-fmt
]; ] ++ pythonPkgs;
}; };
} }