There was an error while loading. Please reload this page.
1 parent 9c8643d commit 45ced66Copy full SHA for 45ced66
1 file changed
src/components/InteractiveInstaller.vue
@@ -26,11 +26,14 @@ const selectedEnv = ref<string>(environments[1] || '');
26
const selectedInit = ref<string>(initSystems[0] || 'systemd');
27
28
const needsUserCreation = computed(() => {
29
- return selectedInit.value !== 'systemd' || selectedMethod.value === 'Source';
+ return (
30
+ selectedDistro.value !== 'NixOS' &&
31
+ (selectedInit.value !== 'systemd' || selectedMethod.value === 'Source')
32
+ );
33
});
34
35
const needsSourceSteps = computed(() => {
- return selectedMethod.value === 'Source';
36
+ return selectedDistro.value !== 'NixOS' && selectedMethod.value === 'Source';
37
38
39
const nixosServerBlocks: StepBlock[] = [
0 commit comments