calendars, static ip

This commit is contained in:
Till 2026-03-06 23:15:10 +01:00
parent 09014f7af5
commit 193686d59f
2 changed files with 36 additions and 5 deletions

View file

@ -1,8 +1,36 @@
{ ... }:
{
networking.hostName = "arielle";
networking.domain = "ktiu.net";
networking = {
hostName = "arielle";
domain = "ktiu.net";
interfaces.enp1s0.ipv4.addresses = [{
address = "116.203.85.135";
prefixLength = 32;
}];
interfaces.enp1s0.ipv6.addresses = [{
address = "2a01:4f8:1c1c:42d8::1";
prefixLength = 64;
}];
nameservers = [
"185.12.64.1"
"185.12.64.2"
];
defaultGateway = {
address = "172.31.1.1";
interface = "enp1s0";
};
defaultGateway6 = {
address = "fe80::1";
interface = "enp1s0";
};
};
imports = [
./hardware-configuration.nix