File tree Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change 78
78
_module . args . pkgs = pkgs . appendOverlays ( config . overlays or [ ] ) ;
79
79
} )
80
80
( inputs . devenv . modules + /top-level.nix )
81
- {
82
- devenv . cliVersion = version ;
83
- devenv . root = devenv_root ;
84
- devenv . dotfile = devenv_dotfile ;
85
- }
86
81
( { options , ... } : {
87
82
config . devenv = lib . mkMerge [
83
+ {
84
+ cliVersion = version ;
85
+ root = devenv_root ;
86
+ dotfile = devenv_dotfile ;
87
+ }
88
88
( pkgs . lib . optionalAttrs ( builtins . hasAttr "tmpdir" options . devenv ) {
89
89
tmpdir = devenv_tmpdir ;
90
90
} )
100
100
] ;
101
101
} )
102
102
( { options , ... } : {
103
- config . git = lib . mkMerge [
103
+ config = lib . mkMerge [
104
104
( pkgs . lib . optionalAttrs ( builtins . hasAttr "git" options ) {
105
- root = git_root ;
105
+ git . root = git_root ;
106
106
} )
107
107
] ;
108
108
} )
You can’t perform that action at this time.
0 commit comments