athens/hosts/plato/configuration.nix

173 lines
4.2 KiB
Nix
Raw Normal View History

2022-12-27 10:10:53 -05:00
{ config, pkgs, ... }: {
2021-12-18 12:40:52 -05:00
imports = [
# Include the results of the hardware scan.
2021-03-07 22:06:39 -05:00
./hardware-configuration.nix
../../users
2022-11-09 23:24:40 -05:00
../../modules/base
../../modules/coredns
2022-06-30 17:43:11 -04:00
../../modules/drone
../../modules/drone/runner-docker.nix
2021-10-13 21:11:36 -04:00
../../modules/gitea
2021-06-07 21:15:08 -04:00
../../modules/matrix
2022-08-09 21:35:47 -04:00
../../modules/minecraft
2022-06-04 12:53:24 -04:00
../../modules/postgresql
../../modules/sops
2022-12-03 23:14:48 -05:00
../../modules/traefik
2021-03-07 22:06:39 -05:00
];
# Use the systemd-boot EFI boot loader.
boot.loader.systemd-boot.enable = true;
2022-04-13 22:55:35 -04:00
boot.loader.systemd-boot.configurationLimit = 3;
2021-03-07 22:06:39 -05:00
boot.loader.efi.canTouchEfiVariables = true;
boot.cleanTmpDir = true;
2021-03-17 20:30:41 -04:00
boot.binfmt.emulatedSystems = [ "aarch64-linux" ];
2021-03-07 22:06:39 -05:00
nixpkgs.config.allowUnfree = true;
2021-11-19 22:59:43 -05:00
nixpkgs.overlays = [ (import ../../overlays) ];
2021-03-07 22:06:39 -05:00
nix.extraOptions = ''
experimental-features = nix-command flakes
'';
2021-03-07 22:06:39 -05:00
# Set your time zone.
time.timeZone = "America/Toronto";
networking.hostName = "plato"; # Define your hostname.
networking.useDHCP = false;
networking.interfaces.enp10s0.useDHCP = true;
networking.interfaces.enp9s0.useDHCP = true;
security.sudo.wheelNeedsPassword = false;
users.users.root.openssh.authorizedKeys.keys = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIJ0mE4MyMnfd1b2nlBJT7kpZ6Vov+ILuGNfzdp5ZBNQe walkah@walkah.net"
2021-03-17 20:30:41 -04:00
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIC5spf4diguK+w7iYLFr565++6DjHukWfvpN2ru9dCRk nixbuild"
2021-03-07 22:06:39 -05:00
];
system.autoUpgrade.enable = false;
2022-05-11 22:34:18 -04:00
environment.systemPackages = with pkgs; [ pinentry weechat ];
2021-03-07 22:06:39 -05:00
fileSystems."/mnt/downloads" = {
device = "192.168.6.100:/volume1/Downloads";
fsType = "nfs";
};
fileSystems."/mnt/music" = {
device = "192.168.6.100:/volume1/Music";
fsType = "nfs";
};
fileSystems."/mnt/video" = {
device = "192.168.6.100:/volume1/Video";
fsType = "nfs";
};
2021-09-24 21:30:15 -04:00
power.ups = {
enable = true;
mode = "standalone";
ups."cyberpower" = {
description = "Cyberpower EC650LCD";
driver = "usbhid-ups";
port = "auto";
};
};
2021-10-09 18:15:38 -04:00
programs.gnupg.agent = {
enable = true;
enableSSHSupport = true;
2021-12-18 12:40:52 -05:00
pinentryFlavor = "curses";
2021-10-09 18:15:38 -04:00
};
2021-03-07 22:06:39 -05:00
# Enable the OpenSSH daemon.
services.openssh.enable = true;
services.tailscale.enable = true;
services.keybase.enable = true;
2021-09-22 17:37:06 -04:00
virtualisation.docker = {
enable = true;
# Clean docker images periodically
autoPrune = {
enable = true;
flags = [ "--all" ];
};
};
2021-03-07 22:06:39 -05:00
# Open ports in the firewall.
# networking.firewall.allowedTCPPorts = [ ... ];
# networking.firewall.allowedUDPPorts = [ ... ];
# Or disable the firewall altogether.
networking.firewall.enable = false;
2021-03-07 22:06:39 -05:00
2021-07-09 22:59:33 -04:00
walkah.coredns = { enable = true; };
2021-05-10 21:42:30 -04:00
services = {
2022-07-05 17:34:19 -04:00
borgbackup.jobs."borgbase" = {
paths = [
"/var/lib"
"/var/backup"
];
exclude = [
# very large paths
"/var/lib/docker"
"/var/lib/postgresql"
"/var/lib/systemd"
];
repo = "qxflzs92@qxflzs92.repo.borgbase.com:repo";
encryption = {
mode = "repokey-blake2";
passCommand = "cat /root/borgbackup/passphrase";
};
environment.BORG_RSH = "ssh -i /root/borgbackup/ssh_key";
compression = "auto,lzma";
startAt = "daily";
};
2021-05-10 21:42:30 -04:00
grafana = {
enable = true;
2022-10-24 16:23:09 -04:00
settings = {
server = {
domain = "plato.walkah.lab";
http_port = 2342;
http_addr = "0.0.0.0";
};
};
2021-05-10 21:42:30 -04:00
};
prometheus = {
enable = true;
port = 9090;
exporters = {
node = {
enable = true;
enabledCollectors = [ "systemd" ];
port = 9100;
};
};
scrapeConfigs = [
{
job_name = "node";
static_configs = [{
targets = [
"plato:9100"
"agent:9100"
"form:9100"
"matter:9100"
"purpose:9100"
2021-06-30 22:20:56 -04:00
"socrates:9100"
2021-05-10 21:42:30 -04:00
];
}];
}
{
job_name = "coredns";
static_configs = [{ targets = [ "plato:9153" ]; }];
}
2021-06-21 22:56:05 -04:00
{
job_name = "ipfs";
metrics_path = "/debug/metrics/prometheus";
static_configs = [{
targets = [ "agent:5001" "form:5001" "matter:5001" "purpose:5001" ];
}];
}
2021-05-10 21:42:30 -04:00
];
};
};
2021-03-07 22:06:39 -05:00
}