-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdevshell.nix
More file actions
47 lines (43 loc) · 1.31 KB
/
devshell.nix
File metadata and controls
47 lines (43 loc) · 1.31 KB
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
{ inputs, ... }:
{
imports = [ inputs.devshell.flakeModule ];
perSystem =
{
config,
lib,
pkgs,
...
}:
{
devshells.default =
let
python = pkgs.python3.withPackages (_p: [
config.legacyPackages.nima
]);
in
{
devshell.motd = "";
packages =
with pkgs;
[
nix-init
nix-prefetch-scripts
nix-prefetch-github
ruff
]
++ [ python ];
commands = [
{
name = "update";
help = "Update flake lock and update all packages using nix-update";
category = "[chore]";
command = ''
nix flake update
${lib.getExe python} update.py pkgs
nix fmt
'';
}
];
};
};
}