File tree Expand file tree Collapse file tree 7 files changed +10
-10
lines changed Expand file tree Collapse file tree 7 files changed +10
-10
lines changed Original file line number Diff line number Diff line change 28
28
{
29
29
imports =
30
30
[
31
+ ./nixosModules/flake-module.nix
31
32
./nix/checks/flake-module.nix
32
33
]
33
34
++ inputs . nixpkgs . lib . optional ( inputs . treefmt-nix ? flakeModule ) ./nix/treefmt/flake-module.nix
56
57
] ;
57
58
58
59
flake = {
59
- nixosModules . buildbot-master . imports = [
60
- ./nix/master.nix
61
- ] ;
62
-
63
- nixosModules . buildbot-worker . imports = [
64
- ./nix/worker.nix
65
- ] ;
66
60
67
61
nixosConfigurations =
68
62
let
File renamed without changes.
Original file line number Diff line number Diff line change
1
+ {
2
+ flake = {
3
+ nixosModules . buildbot-master = ./master.nix ;
4
+ nixosModules . buildbot-worker = ./worker.nix ;
5
+ } ;
6
+ }
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change 35
35
} ;
36
36
37
37
buildbot-nix = lib . mkOption {
38
- default = cfg . python . pkgs . callPackage ./buildbot-nix.nix { } ;
38
+ default = cfg . python . pkgs . callPackage ../packages /buildbot-nix.nix { } ;
39
39
} ;
40
40
41
41
buildbot-plugins = lib . mkOption {
45
45
46
46
buildbot-effects = lib . mkOption {
47
47
type = lib . types . package ;
48
- default = cfg . python . pkgs . callPackage ./buildbot-effects.nix { } ;
48
+ default = cfg . python . pkgs . callPackage ../packages /buildbot-effects.nix { } ;
49
49
} ;
50
50
51
51
buildbot-gitea = lib . mkOption {
52
52
default = (
53
- cfg . python . pkgs . callPackage ./buildbot-gitea.nix {
53
+ cfg . python . pkgs . callPackage ../packages /buildbot-gitea.nix {
54
54
buildbot = cfg . buildbot ;
55
55
}
56
56
) ;
File renamed without changes.
You can’t perform that action at this time.
0 commit comments