Fix the server config scope and improve dev config

This commit is contained in:
Ribbon 2025-10-06 11:36:42 -03:00 committed by Jeremy Soller
parent 4e1db89e42
commit 4db6fee3b5
3 changed files with 2 additions and 43 deletions

View File

@ -12,44 +12,4 @@ prompt = false
# Package settings
[packages]
dev-redox = {}
[[files]]
path = "/home/user/test.rs"
data = """
fn main() {
println!("Hello, Redox!");
}
"""
[[files]]
path = "/home/user/test.c"
data = """
#include <stdio.h>
int main(void) {
printf("Hello, Redox!\\n");
}
"""
[[files]]
path = "/home/user/test.cpp"
data = """
#include <iostream>
int main()
{
std::cout << "Hello, Redox!" << std::endl;
}
"""
[[files]]
path = "/home/user/test.py"
data = """
print("Hello, Redox!")
"""
[[files]]
path = "/home/user/test.lua"
data = """
print("Hello, Redox!")
"""
hello-redox = {}

View File

@ -5,6 +5,7 @@ include = ["base.toml"]
# Package settings
[packages]
netdb = {}
netutils = {}
## Network init

View File

@ -21,10 +21,8 @@ git = {}
installer = {}
ion = {}
kibi = {}
netdb = {}
pkgutils = {}
redoxfs = {}
resist = {}
[[files]]
path = "/usr/lib/init.d/30_console"