File tree Expand file tree Collapse file tree 2 files changed +14
-8
lines changed Expand file tree Collapse file tree 2 files changed +14
-8
lines changed Original file line number Diff line number Diff line change
1
+ {
2
+ perSystem =
3
+ { pkgs , ... } :
4
+ {
5
+ devShells . default = pkgs . mkShell {
6
+ packages = [
7
+ pkgs . bashInteractive
8
+ pkgs . mypy
9
+ pkgs . ruff
10
+ ] ;
11
+ } ;
12
+ } ;
13
+ }
Original file line number Diff line number Diff line change 28
28
{
29
29
imports =
30
30
[
31
+ ./devShells/flake-module.nix
31
32
./nixosModules/flake-module.nix
32
33
./nix/checks/flake-module.nix
33
34
]
57
58
] ;
58
59
59
60
flake = {
60
-
61
61
nixosConfigurations =
62
62
let
63
63
examplesFor =
82
82
{
83
83
packages =
84
84
{
85
- default = pkgs . mkShell {
86
- packages = [
87
- pkgs . bashInteractive
88
- pkgs . mypy
89
- pkgs . ruff
90
- ] ;
91
- } ;
92
85
# useful for checking what buildbot version is used.
93
86
buildbot = pkgs . buildbot ;
94
87
buildbot-nix = pkgs . python3 . pkgs . callPackage ./nix/buildbot-nix.nix { } ;
You can’t perform that action at this time.
0 commit comments