-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathflake.nix
50 lines (48 loc) · 1.38 KB
/
flake.nix
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
description = "Jambhalaiken Development Environment";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
flake-utils.url = "github:numtide/flake-utils";
};
outputs = { self, nixpkgs, flake-utils }: flake-utils.lib.eachDefaultSystem (system:
let
pkgs = import nixpkgs { inherit system; };
in {
devShell = pkgs.mkShell {
buildInputs = with pkgs; [
bashInteractive
deno
gnugrep
just
httpie
neovim
nixpkgs-fmt
nix-prefetch-git
nodejs_20
nodePackages.pnpm
python311
python311Packages.autopep8
(vscode-with-extensions.override {
vscode = pkgs.vscodium;
vscodeExtensions = with pkgs.vscode-extensions; [
asvetliakov.vscode-neovim
denoland.vscode-deno
dracula-theme.theme-dracula
jnoortheen.nix-ide
mkhl.direnv
ms-python.python
ms-python.vscode-pylance
] ++ pkgs.vscode-utils.extensionsFromVscodeMarketplace [
{
name = "aiken";
publisher = "TxPipe";
version = "1.0.11";
sha256 = "18ea6f3c59f1649156a1709c282d8e05939fed7f915aab656a3192b91b4d5efa";
}
];
})
];
};
}
);
}