DistroService: rename to HostService

This commit is contained in:
Ly-sec
2025-11-13 15:41:46 +01:00
parent 1288924f87
commit 4fd5865978
4 changed files with 10 additions and 10 deletions
+3 -3
View File
@@ -81,7 +81,7 @@ ShellRoot {
BatteryService.init()
IdleInhibitorService.init()
PowerProfileService.init()
DistroService.init()
HostService.init()
FontService.init()
// Only open the setup wizard for new users
@@ -128,13 +128,13 @@ ShellRoot {
function checkSetupWizard() {
// Wait for distro service
if (!DistroService.isReady) {
if (!HostService.isReady) {
Qt.callLater(checkSetupWizard)
return
}
// No setup wizard on NixOS
if (DistroService.isNixOS) {
if (HostService.isNixOS) {
Settings.data.setupCompleted = true
return
}