2022-12-27 10:10:53 -05:00
|
|
|
{ pkgs, nixos-hardware, ... }:
|
2021-04-26 20:28:47 -04:00
|
|
|
|
|
|
|
{
|
2022-01-24 18:35:39 -05:00
|
|
|
imports = [
|
|
|
|
# Include the results of the hardware scan.
|
2021-04-26 20:28:47 -04:00
|
|
|
./hardware-configuration.nix
|
2022-06-28 22:12:01 -04:00
|
|
|
nixos-hardware.nixosModules.raspberry-pi-4
|
2021-06-21 22:44:03 -04:00
|
|
|
|
2022-11-09 23:24:40 -05:00
|
|
|
../../modules/base
|
2021-10-30 23:33:26 -04:00
|
|
|
../../modules/ipfs/cluster.nix
|
2021-11-15 21:26:30 -05:00
|
|
|
../../modules/sops
|
2021-04-26 20:28:47 -04:00
|
|
|
];
|
|
|
|
|
2021-11-19 22:59:43 -05:00
|
|
|
nixpkgs.overlays = [ (import ../../overlays) ];
|
|
|
|
|
2021-04-26 20:28:47 -04:00
|
|
|
# Use the extlinux boot loader. (NixOS wants to enable GRUB by default)
|
|
|
|
boot.loader.grub.enable = false;
|
|
|
|
# Enables the generation of /boot/extlinux/extlinux.conf
|
2022-01-24 18:35:39 -05:00
|
|
|
boot.loader.generic-extlinux-compatible.enable = false;
|
2021-04-26 20:28:47 -04:00
|
|
|
|
|
|
|
boot.kernelPackages = pkgs.linuxPackages_rpi4;
|
|
|
|
boot.loader.raspberryPi = {
|
|
|
|
enable = true;
|
|
|
|
version = 4;
|
|
|
|
};
|
|
|
|
|
|
|
|
# networking.hostName = "nixos"; # Define your hostname.
|
|
|
|
# networking.wireless.enable = true; # Enables wireless support via wpa_supplicant.
|
|
|
|
|
|
|
|
# The global useDHCP flag is deprecated, therefore explicitly set to false here.
|
|
|
|
# Per-interface useDHCP will be mandatory in the future, so this generated config
|
|
|
|
# replicates the default behaviour.
|
|
|
|
networking.useDHCP = false;
|
|
|
|
networking.interfaces.eth0.useDHCP = true;
|
|
|
|
networking.interfaces.wlan0.useDHCP = true;
|
2021-06-21 22:44:03 -04:00
|
|
|
networking.firewall.enable = false;
|
2021-04-26 20:28:47 -04:00
|
|
|
|
|
|
|
# Enable the OpenSSH daemon.
|
|
|
|
services.openssh.enable = true;
|
|
|
|
users.users.root.openssh.authorizedKeys.keys = [
|
|
|
|
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIJ0mE4MyMnfd1b2nlBJT7kpZ6Vov+ILuGNfzdp5ZBNQe walkah@walkah.net"
|
|
|
|
];
|
|
|
|
|
2021-05-10 21:42:30 -04:00
|
|
|
environment.systemPackages = with pkgs; [ libraspberrypi ];
|
|
|
|
|
|
|
|
services = {
|
2023-04-08 15:50:20 -04:00
|
|
|
kubo = {
|
|
|
|
package = pkgs.kubo_carmirror;
|
|
|
|
};
|
2021-05-10 21:42:30 -04:00
|
|
|
prometheus = {
|
|
|
|
enable = true;
|
|
|
|
port = 9090;
|
|
|
|
exporters = {
|
|
|
|
node = {
|
|
|
|
enable = true;
|
|
|
|
enabledCollectors = [ "systemd" ];
|
|
|
|
openFirewall = true;
|
|
|
|
port = 9100;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
tailscale = { enable = true; };
|
|
|
|
};
|
2021-04-26 20:28:47 -04:00
|
|
|
}
|