stockholm/krebs/1systems/puyak/config.nix

176 lines
5.2 KiB
Nix
Raw Normal View History

{ config, pkgs, lib, ... }:
2017-07-20 21:40:58 +00:00
{
imports = [
2020-11-24 21:11:59 +00:00
./net.nix
2024-09-06 20:44:11 +00:00
../../../krebs
../../../krebs/2configs
../../2configs/secret-passwords.nix
../../2configs/hw/x220.nix
2017-07-22 13:21:29 +00:00
# see documentation in included getty-for-esp.nix:
# brain hosts/puyak/root
2024-09-06 20:44:11 +00:00
../../2configs/hw/getty-for-esp.nix
2024-09-06 20:44:11 +00:00
../../2configs/buildbot/worker.nix
2020-11-05 21:14:09 +00:00
## initrd unlocking
2024-09-06 20:44:11 +00:00
# (brain hosts/puyak/luks-ssd;echo) | ssh root@$(brain krebs-secrets/puyak/initrd/hostname) 'cat /crypt-ramfs/passphrase'
../../2configs/tor/initrd.nix
2020-11-05 21:14:09 +00:00
2024-09-06 20:44:11 +00:00
../../2configs/binary-cache/nixos.nix
../../2configs/binary-cache/prism.nix
2024-09-06 20:44:11 +00:00
## news host
../../2configs/container-networking.nix
../../2configs/syncthing.nix
2021-03-26 19:11:51 +00:00
### shackspace ###
# handle the worlddomination map via coap
2024-09-06 20:44:11 +00:00
../../2configs/shack/worlddomination.nix
../../2configs/shack/ssh-keys.nix
# drivedroid.shack for shackphone
2024-09-06 20:44:11 +00:00
../../2configs/shack/drivedroid.nix
# ../../2configs/shack/nix-cacher.nix
# Say if muell will be collected
2024-09-06 20:44:11 +00:00
../../2configs/shack/muell_caller.nix
# provide muellshack api: muell.shack
2024-09-06 20:44:11 +00:00
../../2configs/shack/muellshack.nix
# send mail if muell was not handled
2024-09-06 20:44:11 +00:00
../../2configs/shack/muell_mail.nix
# provide light control api
2024-09-06 20:44:11 +00:00
../../2configs/shack/node-light.nix # light.shack lounge.light.shack power.light.shack openhab.shack lightapi.shack
# light.shack web-ui
2024-09-06 20:44:11 +00:00
../../2configs/shack/light.shack.nix #light.shack
2023-06-03 13:46:40 +00:00
# fetch the u300 power stats
2024-09-06 20:44:11 +00:00
../../2configs/shack/power/u300-power.nix
{ # do not log to /var/spool/log
services.nginx.appendHttpConfig = ''
map $request_method $loggable {
default 1;
GET 0;
}
log_format vhost '$host $remote_addr - $remote_user '
'[$time_local] "$request" $status '
'$body_bytes_sent "$http_referer" '
'"$http_user_agent"';
error_log stderr;
access_log syslog:server=unix:/dev/log vhost;
'';
services.journald.rateLimitBurst = 10000;
}
# create samba share for anonymous usage with the laser and 3d printer pc
2024-09-06 20:44:11 +00:00
../../2configs/shack/share.nix
# mobile.lounge.mpd.shack
2024-09-06 20:44:11 +00:00
../../2configs/shack/mobile.mpd.nix
# hass.shack
2024-09-06 20:44:11 +00:00
../../2configs/shack/glados
../../2configs/shack/esphome.nix
# connect to git.shackspace.de as group runner for rz
2024-09-06 20:44:11 +00:00
../../2configs/shack/gitlab-runner.nix
# Statistics collection and visualization
2024-09-06 20:44:11 +00:00
# ../../2configs/shack/graphite.nix # graphiteApi is broken and unused(hopefully)
## Collect data from mqtt.shack and store in graphite database
2024-09-06 20:44:11 +00:00
../../2configs/shack/mqtt_sub.nix
## Collect radioactive data and put into graphite
2024-09-06 20:44:11 +00:00
../../2configs/shack/radioactive.nix
## mqtt.shack
2024-09-06 20:44:11 +00:00
../../2configs/shack/mqtt.nix
## influx.shack
2024-09-06 20:44:11 +00:00
../../2configs/shack/influx.nix
## Collect local statistics via collectd and send to collectd
2024-09-06 20:44:11 +00:00
# ../../2configs/stats/shack-client.nix
# ../../2configs/stats/shack-debugging.nix
2020-11-04 22:01:50 +00:00
## netbox.shack: Netbox is disabled as nobody seems to be using it anyway
2024-09-06 20:44:11 +00:00
# ../../2configs/shack/netbox.nix
2020-11-04 22:01:50 +00:00
# grafana.shack
2024-09-06 20:44:11 +00:00
../../2configs/shack/grafana.nix
# shackdns.shack
# replacement for leases.shack and shackles.shack
2024-09-06 20:44:11 +00:00
../../2configs/shack/shackDNS.nix
# monitoring: prometheus.shack
2024-09-06 20:44:11 +00:00
../../2configs/shack/prometheus/node.nix
../../2configs/shack/prometheus/server.nix
../../2configs/shack/prometheus/blackbox.nix
#../../2configs/shack/prometheus/unifi.nix
2022-12-12 19:55:37 +00:00
# TODO: alertmanager 0.24+ supports telegram
2024-09-06 20:44:11 +00:00
# ../../2configs/shack/prometheus/alertmanager-telegram.nix
2017-07-20 21:40:58 +00:00
];
krebs.build.host = config.krebs.hosts.puyak;
krebs.hosts.puyak.ssh.privkey.path = "${config.krebs.secret.directory}/ssh.id_ed25519";
2023-07-04 11:33:33 +00:00
2017-07-20 21:40:58 +00:00
boot = {
loader.systemd-boot.enable = true;
loader.efi.canTouchEfiVariables = true;
2020-06-15 09:08:31 +00:00
initrd.luks.devices.luksroot.device = "/dev/sda3";
2017-07-20 21:40:58 +00:00
initrd.availableKernelModules = [ "xhci_hcd" "ehci_pci" "ahci" "usb_storage" ];
2017-09-30 23:32:36 +00:00
kernelModules = [ "kvm-intel" ];
extraModprobeConfig = ''
options thinkpad_acpi fan_control=1
'';
2017-07-20 21:40:58 +00:00
};
fileSystems = {
"/" = {
device = "/dev/mapper/pool-root";
fsType = "btrfs";
options = ["defaults" "noatime" "ssd" "compress=lzo"];
};
"/boot" = {
device = "/dev/sda2";
};
2017-07-22 20:09:44 +00:00
"/bku" = {
device = "/dev/mapper/pool-bku";
fsType = "btrfs";
options = ["defaults" "noatime" "ssd" "compress=lzo"];
};
2017-07-20 21:40:58 +00:00
"/home" = {
device = "/dev/mapper/pool-home";
fsType = "btrfs";
options = ["defaults" "noatime" "ssd" "compress=lzo"];
};
"/tmp" = {
device = "tmpfs";
fsType = "tmpfs";
options = ["nosuid" "nodev" "noatime"];
};
};
2019-06-19 17:19:39 +00:00
services.logind.lidSwitch = "ignore";
2019-07-07 21:15:55 +00:00
services.logind.lidSwitchExternalPower = "ignore";
2017-07-20 21:40:58 +00:00
2017-09-08 23:37:56 +00:00
environment.systemPackages = [ pkgs.zsh ];
2017-09-25 22:24:30 +00:00
system.activationScripts."disengage fancontrol" = ''
echo level disengaged > /proc/acpi/ibm/fan
'';
2017-09-08 23:16:06 +00:00
users.users.joerg = {
2020-08-20 20:16:50 +00:00
openssh.authorizedKeys.keys = [ config.krebs.users.mic92.pubkey ];
2017-09-08 23:16:06 +00:00
isNormalUser = true;
shell = "/run/current-system/sw/bin/zsh";
};
system.stateVersion = lib.mkForce "24.05";
2017-07-20 21:40:58 +00:00
}