1
0
Fork 0

Merge remote-tracking branch 'origin'

This commit is contained in:
Philipp 2025-03-15 11:24:49 +01:00
commit cdf4b472ca
Signed by: Philipp
GPG key ID: 9EBD8439AFBAB750

View file

@ -17,20 +17,25 @@ with lib.${namespace};
# Enables the generation of /boot/extlinux/extlinux.conf
boot.loader.generic-extlinux-compatible.enable = true;
networking.hostName = "blarm"; # Define your hostname.
networking.networkmanager.enable = true;
networking.defaultGateway.address = "192.168.1.1";
networking.defaultGateway.interface = "end0";
networking.interfaces.end0 = {
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;
}
];
};
networking.interfaces.end0.ipv6.addresses = [
ipv6.addresses = [
{
address = "fd00:192:168:1::202";
prefixLength = 64;
@ -40,7 +45,8 @@ with lib.${namespace};
prefixLength = 64;
}
];
networking.firewall.enable = false;
};
};
nix.settings.experimental-features = [
"nix-command"