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

@ -126,9 +126,12 @@ in
khal.color = "light green"; khal.color = "light green";
remote = { remote = {
type = "caldav"; type = "caldav";
url = "https://cloud.gridisnotajournal.de/remote.php/dav/calendars/till/grid/"; # url = "https://cloud.gridisnotajournal.de/remote.php/dav/calendars/till/grid/";
passwordCommand = [ "pass" "uni/grid-caldav-nextcloud" ]; # passwordCommand = [ "pass" "uni/grid-caldav-nextcloud" ];
userName = "till"; # userName = "till";
url = "https://kalender.humangeographie.de/grid/96dedda9-cc91-c2fe-3bd8-020296904489/";
userName = "grid";
passwordCommand = [ "pass" "uni/grid-kalender-radicale" ];
}; };
}; };
}; };

View file

@ -1,8 +1,36 @@
{ ... }: { ... }:
{ {
networking.hostName = "arielle"; networking = {
networking.domain = "ktiu.net";
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 = [ imports = [
./hardware-configuration.nix ./hardware-configuration.nix