1
0
Fork 0

add ssh to modules, export networking from blarm

This commit is contained in:
Philipp 2025-03-15 11:47:34 +01:00
parent cdf4b472ca
commit 56a64c1e0e
Signed by: Philipp
GPG key ID: 9EBD8439AFBAB750
4 changed files with 86 additions and 40 deletions

View file

@ -0,0 +1,33 @@
{
networking = {
hostName = "blarm";
firewall.enable = false;
networkmanager.enable = false;
dhcpcd.enable = true;
defaultGateway.address = "192.168.1.1";
interfaces.end0 = {
useDHCP = true;
ipv4.addresses = [
{
address = "192.168.1.251";
prefixLength = 32;
}
{
address = "192.168.1.202";
prefixLength = 32;
}
];
ipv6.addresses = [
{
address = "fd00:192:168:1::202";
prefixLength = 64;
}
{
address = "fd00:192:168:1::251";
prefixLength = 64;
}
];
};
};
}