You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fmt.Fprintln(writer, "Nix installed successfully. Devbox is ready to use!")
170
180
returnnil
171
181
}
182
+
183
+
funcisLinuxWithoutSystemd() bool {
184
+
ifbuild.OS() !=build.OSLinux {
185
+
returnfalse
186
+
}
187
+
// My best interpretation of https://github.com/DeterminateSystems/nix-installer/blob/66ad2759a3ecb6da345373e3c413c25303305e25/src/action/common/configure_init_service.rs#L108-L118
0 commit comments