feat: first working config

This commit is contained in:
Moritz Böhme 2025-03-29 22:53:53 +01:00
parent 13d0686cc0
commit 8a7cbb266a
No known key found for this signature in database
GPG key ID: 970C6E89EB0547A9
2 changed files with 4438 additions and 1 deletions

View file

@ -10,7 +10,20 @@
# Set this for clan commands use ssh i.e. `clan machines update` # Set this for clan commands use ssh i.e. `clan machines update`
# If you change the hostname, you need to update this line to root@<new-hostname> # If you change the hostname, you need to update this line to root@<new-hostname>
# This only works however if you have avahi running on your admin machine else use IP # This only works however if you have avahi running on your admin machine else use IP
clan.core.networking.targetHost = "root@<IP>"; clan.core.networking.targetHost = "root@192.168.0.3";
networking = {
interfaces.enp2s0 = {
ipv4.addresses = [{
address = "192.168.0.3";
prefixLength = 24;
}];
};
defaultGateway = {
address = "192.168.0.1";
interface = "enp2s0";
};
};
# You can get your disk id by running the following command on the installer: # You can get your disk id by running the following command on the installer:
# Replace <IP> with the IP of the installer printed on the screen or by running the `ip addr` command. # Replace <IP> with the IP of the installer printed on the screen or by running the `ip addr` command.

File diff suppressed because it is too large Load diff