2021-11-01 21:56:32 +00:00
|
|
|
|
# Edit this configuration file to define what should be installed on
|
|
|
|
|
# your system. Help is available in the configuration.nix(5) man page
|
|
|
|
|
# and in the NixOS manual (accessible by running ‘nixos-help’).
|
|
|
|
|
|
2021-11-02 10:49:28 +00:00
|
|
|
|
{ config, pkgs, ... } @ args:
|
2021-11-01 21:56:32 +00:00
|
|
|
|
|
2021-11-02 10:49:28 +00:00
|
|
|
|
# Configuration local for this cluster node (hostname, IP, etc)
|
|
|
|
|
let node_config = import ./node.nix args;
|
2021-11-18 15:40:19 +00:00
|
|
|
|
site_config = import ./site.nix args;
|
2021-11-02 10:49:28 +00:00
|
|
|
|
in
|
2021-11-01 21:56:32 +00:00
|
|
|
|
{
|
|
|
|
|
imports =
|
|
|
|
|
[ # Include the results of the hardware scan.
|
|
|
|
|
./hardware-configuration.nix
|
|
|
|
|
# Configuration local for this cluster node (hostname, IP, etc)
|
|
|
|
|
./node.nix
|
2021-11-18 15:40:19 +00:00
|
|
|
|
# Configuration local for this Deuxfleurs site (set of nodes)
|
|
|
|
|
./site.nix
|
2021-11-01 21:56:32 +00:00
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
# 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;
|
2021-11-02 09:15:37 +00:00
|
|
|
|
# networking.wireless.enable = true; # Enables wireless support via wpa_supplicant.
|
2021-11-01 21:56:32 +00:00
|
|
|
|
|
2021-11-16 16:39:23 +00:00
|
|
|
|
# Networking configuration (static IPs for each node is defined in node/*.nix)
|
2021-11-02 16:33:54 +00:00
|
|
|
|
networking.nameservers = [ "9.9.9.9" ];
|
|
|
|
|
|
2021-11-16 16:39:23 +00:00
|
|
|
|
# Wireguard VPN configuration
|
|
|
|
|
networking.wireguard.interfaces.wg0 = {
|
|
|
|
|
privateKeyFile = "/root/wireguard-keys/private";
|
|
|
|
|
peers = [
|
|
|
|
|
{ # Hammerhead
|
|
|
|
|
publicKey = "b5hF+GSTgg3oM6wnjL7jRbfyf1jtsWdVptPPbAh3Qic=";
|
|
|
|
|
allowedIPs = [ "10.42.0.1/32" ];
|
|
|
|
|
endpoint = "5.135.179.11:51349";
|
|
|
|
|
persistentKeepalive = 10;
|
|
|
|
|
}
|
|
|
|
|
{ # Spoutnik
|
|
|
|
|
publicKey = "fO8qZOZmnug84cA8nvfjl5MUqyWljP0BAz/4tHRZyEg=";
|
|
|
|
|
allowedIPs = [ "10.42.0.2/32" ];
|
|
|
|
|
endpoint = "77.141.67.109:42136";
|
|
|
|
|
persistentKeepalive = 10;
|
|
|
|
|
}
|
2021-11-18 13:54:30 +00:00
|
|
|
|
{ # Robinson
|
|
|
|
|
publicKey = "ETaZFil3mFXlJ0LaJZyWqJVLV2IZUF5PB/8M7WbQSTg=";
|
|
|
|
|
allowedIPs = [ "10.42.0.42/32" ];
|
|
|
|
|
endpoint = "77.141.67.109:33742";
|
|
|
|
|
persistentKeepalive = 10;
|
|
|
|
|
}
|
2021-11-16 16:39:23 +00:00
|
|
|
|
{ # Shiki
|
|
|
|
|
publicKey = "QUiUNMk70TEQ75Ut7Uqikr5uGVSXmx8EGNkGM6tANlg=";
|
|
|
|
|
allowedIPs = [ "10.42.0.206/32" ];
|
|
|
|
|
endpoint = "37.187.118.206:51820";
|
|
|
|
|
persistentKeepalive = 10;
|
|
|
|
|
}
|
2021-11-16 17:45:57 +00:00
|
|
|
|
{ # Lindy
|
|
|
|
|
publicKey = "wen9GnZy2iLT6RyHfn7ydS/wvdvow1XPmhZxIkrDbks=";
|
|
|
|
|
allowedIPs = [ "10.42.0.66/32" ];
|
|
|
|
|
endpoint = "91.160.50.156:33766";
|
|
|
|
|
persistentKeepalive = 10;
|
|
|
|
|
}
|
2021-11-16 16:39:23 +00:00
|
|
|
|
{ # Carcajou
|
|
|
|
|
publicKey = "qxrtfn2zRVnN52Y5NYumyU3/FcRMnh3kJ2C37JfrczA=";
|
|
|
|
|
allowedIPs = [ "10.42.0.21/32" ];
|
|
|
|
|
endpoint = "91.160.50.156:33721";
|
|
|
|
|
persistentKeepalive = 10;
|
|
|
|
|
}
|
|
|
|
|
{ # Carcajou
|
|
|
|
|
publicKey = "7Nm7pMmyS7Nts1MB+loyD8u84ODxHPTkDu+uqQR6yDk=";
|
|
|
|
|
allowedIPs = [ "10.42.0.22/32" ];
|
|
|
|
|
endpoint = "91.160.50.156:33722";
|
|
|
|
|
persistentKeepalive = 10;
|
|
|
|
|
}
|
|
|
|
|
{ # Caribou
|
|
|
|
|
publicKey = "g6ZED/wPn5MPfytJKwPI19808CXtEad0IJUkEAAzwyY=";
|
|
|
|
|
allowedIPs = [ "10.42.0.23/32" ];
|
|
|
|
|
endpoint = "91.160.50.156:33723";
|
|
|
|
|
persistentKeepalive = 10;
|
|
|
|
|
}
|
|
|
|
|
];
|
|
|
|
|
};
|
|
|
|
|
|
2021-11-01 21:56:32 +00:00
|
|
|
|
# Set your time zone.
|
|
|
|
|
time.timeZone = "Europe/Paris";
|
|
|
|
|
|
|
|
|
|
networking.extraHosts = ''
|
|
|
|
|
192.168.1.21 cariacou
|
|
|
|
|
192.168.1.22 carcajou
|
|
|
|
|
192.168.1.23 caribou
|
|
|
|
|
192.168.1.23 binarycache
|
|
|
|
|
192.168.1.23 binarycache.home.adnab.me
|
2021-11-16 17:37:01 +00:00
|
|
|
|
10.42.0.1 hammerhead
|
|
|
|
|
10.42.0.2 spoutnik
|
2021-11-16 17:45:57 +00:00
|
|
|
|
10.42.0.66 lindy
|
2021-11-16 17:37:01 +00:00
|
|
|
|
10.42.0.206 shiki
|
2021-11-01 21:56:32 +00:00
|
|
|
|
'';
|
|
|
|
|
|
|
|
|
|
# Configure network proxy if necessary
|
|
|
|
|
# networking.proxy.default = "http://user:password@proxy:port/";
|
|
|
|
|
# networking.proxy.noProxy = "127.0.0.1,localhost,internal.domain";
|
|
|
|
|
|
|
|
|
|
# Select internationalisation properties.
|
|
|
|
|
# i18n.defaultLocale = "en_US.UTF-8";
|
|
|
|
|
console = {
|
|
|
|
|
font = "sun12x22";
|
|
|
|
|
keyMap = "fr";
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
# Enable the X11 windowing system.
|
|
|
|
|
# services.xserver.enable = true;
|
|
|
|
|
|
|
|
|
|
# Configure keymap in X11
|
|
|
|
|
# services.xserver.layout = "us";
|
|
|
|
|
# services.xserver.xkbOptions = "eurosign:e";
|
|
|
|
|
|
|
|
|
|
# Enable CUPS to print documents.
|
|
|
|
|
# services.printing.enable = true;
|
|
|
|
|
|
|
|
|
|
# Enable sound.
|
|
|
|
|
# sound.enable = true;
|
|
|
|
|
# hardware.pulseaudio.enable = true;
|
|
|
|
|
|
|
|
|
|
# Enable touchpad support (enabled default in most desktopManager).
|
|
|
|
|
# services.xserver.libinput.enable = true;
|
|
|
|
|
|
|
|
|
|
# Define a user account. Don't forget to set a password with ‘passwd’.
|
|
|
|
|
users.users.lx = {
|
|
|
|
|
isNormalUser = true;
|
2021-11-02 09:32:12 +00:00
|
|
|
|
extraGroups = [
|
2021-11-02 16:33:54 +00:00
|
|
|
|
"wheel" # Enable ‘sudo’ for the user.
|
|
|
|
|
"video" # Having fun with links -g
|
|
|
|
|
"docker" # Enable management of Docker containers
|
2021-11-02 09:32:12 +00:00
|
|
|
|
];
|
|
|
|
|
openssh.authorizedKeys.keys = [
|
|
|
|
|
# Keys for accessing nodes from outside
|
|
|
|
|
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIJpaBZdYxHqMxhv2RExAOa7nkKhPBOHupMP3mYaZ73w9 lx@lindy"
|
|
|
|
|
"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDIDdVbA9fEdqSr5UJ77NnoIqDTVp8ca5kHExhZYI4ecBExFJfonJllXMBN9KdC4ukxtY8Ug47PcMOfMaTBZQc+e+KpvDWpkBt15Xpem3RCxmMBES79sLL7LgtAdBXc5mNaCX8EOEVixWKdarjvxRyf6py6the51G5muaiMpoj5fae4ZpRGjhGTPefzc7y7zRWBUUZ8pYHW774BIaK6XT9gn3hyHV+Occjl/UODXvodktk55YtnuPi8adXTYEsHrVVz8AkFhx+cr0U/U8vtQnsTrZG+JmgQLqpXVs0RDw5bE1RefEbMuYNKxutYKUe3L+ZJtDe0M0MqOFI8a4F5TxP5 katchup@konata"
|
|
|
|
|
];
|
2021-11-01 21:56:32 +00:00
|
|
|
|
};
|
|
|
|
|
|
2021-11-16 17:37:01 +00:00
|
|
|
|
users.users.quentin = {
|
|
|
|
|
isNormalUser = true;
|
|
|
|
|
extraGroups = [ "wheel" "docker" ];
|
|
|
|
|
openssh.authorizedKeys.keys = [
|
|
|
|
|
"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDT1+H08FdUSvdPpPKdcafq4+JRHvFVjfvG5Id97LAoROmFRUb/ZOMTLdNuD7FqvW0Da5CPxIMr8ZxfrFLtpGyuG7qdI030iIRZPlKpBh37epZHaV+l9F4ZwJQMIBO9cuyLPXgsyvM/s7tDtrdK1k7JTf2EVvoirrjSzBaMhAnhi7//to8zvujDtgDZzy6aby75bAaDetlYPBq2brWehtrf9yDDG9WAMYJqp//scje/WmhbRR6eSdim1HaUcWk5+4ZPt8sQJcy8iWxQ4jtgjqTvMOe5v8ZPkxJNBine/ZKoJsv7FzKem00xEH7opzktaGukyEqH0VwOwKhmBiqsX2yN quentin@dufour.io"
|
|
|
|
|
"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDBu+KUebaWwlugMC5fGbNhHc6IaQDAC6+1vMc4Ww7nVU1rs2nwI7L5qcWxOwNdhFaorZQZy/fJuCWdFbF61RCKGayBWPLZHGPsfqDuggYNEi1Qil1kpeCECfDQNjyMTK058ZBBhOWNMHBjlLWXUlRJDkRBBECY0vo4jRv22SvSaPUCAnkdJ9rbAp/kqb497PTIb2r1l1/ew8YdhINAlpYQFQezZVfkZdTKxt22n0QCjhupqjfh3gfNnbBX0z/iO+RvAOWRIZsjPFLC+jXl+n7cnu2cq1nvST5eHiYfXXeIgIwmeENLKqp+2Twr7PIdv22PnJkh6iR5kx7eTRxkNZdN quentin@deuxfleurs.fr"
|
|
|
|
|
];
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
users.users.adrien = {
|
|
|
|
|
isNormalUser = true;
|
|
|
|
|
extraGroups = [ "wheel" "docker" ];
|
|
|
|
|
openssh.authorizedKeys.keys = [
|
|
|
|
|
"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDBfVX+iQSHl3V0el3/y2Rtl9Q/nrmLoTE3oXnR+16yX7g8HvzU871q89jbE/UWvNRvO4hirTcKF8yojuq8ZRCoUcQO+6/YlPrY/2G8kFhPTlUGDQ+mLT+ancZsom4mkg3I9oQjKZ9qxMD1GuU8Ydz4eXjhJ8OGFZhBpEgnrLmdA53Y5d2fCbaZN5EYD4sWEFYN7xBLxTGNwv0gygiPs967Z4/ZfHngTvqVoS9wnQThSCIoXPTWFAJCkN8dC5tPZwnbOT1bGcYUF0VTrcaD6cU6Q1ZRrtyqXxnnyxpQCAoe2hgdIm+LnDsBx9trfPauqi0dXi36X8pLmudW1f1RmKWT adrien@bacigalupi"
|
|
|
|
|
];
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
users.users.maximilien = {
|
|
|
|
|
isNormalUser = true;
|
|
|
|
|
extraGroups = [ "wheel" "docker" ];
|
|
|
|
|
openssh.authorizedKeys.keys = [
|
|
|
|
|
"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDHMMR6zNzz8NQU80wFquhUCeiXJuGphjP+zNouKbn228GyESu8sfNBwnuZq86vblR11Lz8l2rtCM73GfAKg29qmUWUHRKWvRIYWv2vaUJcCdy0bAxIzcvCvjZX0SpnIKxe9y3Rp0LGO5WLYfw0ZFaavwFZP0Z8w1Kj9/zBmL2X2avbhkaYHi/C1yXhbvESYQysmqLa48EX/TS616MBrgR9zbI9AoTQ9NOHnR14Tve/AP/khcZoBJdm4hTttMbNkEc0wonzdylTDew263SPRs/uoqnQIpUtErdPHqU10Yup8HjXjEyFJsSwcZcM5sZOw5JKckKJwmcd0yjO/x/4/Mk5"
|
|
|
|
|
];
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
users.users.kokakiwi = {
|
|
|
|
|
isNormalUser = true;
|
|
|
|
|
extraGroups = [ "wheel" "docker" ];
|
|
|
|
|
openssh.authorizedKeys.keys = [
|
|
|
|
|
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIFPTsEgcOtb2bij+Ih8eg8ZqO7d3IMiWykv6deMzlSSS kokakiwi@kira"
|
|
|
|
|
];
|
|
|
|
|
};
|
|
|
|
|
|
2021-11-16 18:00:15 +00:00
|
|
|
|
# Passwordless sudo
|
|
|
|
|
security.sudo.wheelNeedsPassword = false;
|
|
|
|
|
|
2021-11-01 21:56:32 +00:00
|
|
|
|
# List packages installed in system profile. To search, run:
|
|
|
|
|
# $ nix search wget
|
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
|
|
|
vim
|
|
|
|
|
tmux
|
2021-11-02 16:33:54 +00:00
|
|
|
|
ncdu
|
|
|
|
|
iotop
|
2021-11-02 19:45:21 +00:00
|
|
|
|
jnettop
|
|
|
|
|
nethogs
|
2021-11-01 21:56:32 +00:00
|
|
|
|
wget
|
|
|
|
|
htop
|
|
|
|
|
links
|
|
|
|
|
git
|
2021-11-16 16:39:23 +00:00
|
|
|
|
docker-compose
|
2021-11-01 21:56:32 +00:00
|
|
|
|
];
|
|
|
|
|
|
2021-11-02 09:18:03 +00:00
|
|
|
|
programs.vim.defaultEditor = true;
|
|
|
|
|
|
2021-11-01 21:56:32 +00:00
|
|
|
|
# Some programs need SUID wrappers, can be configured further or are
|
|
|
|
|
# started in user sessions.
|
|
|
|
|
# programs.mtr.enable = true;
|
|
|
|
|
# programs.gnupg.agent = {
|
|
|
|
|
# enable = true;
|
|
|
|
|
# enableSSHSupport = true;
|
|
|
|
|
# };
|
|
|
|
|
|
|
|
|
|
# List services that you want to enable:
|
2021-11-02 10:49:28 +00:00
|
|
|
|
|
2021-11-01 21:56:32 +00:00
|
|
|
|
# Enable network time
|
|
|
|
|
services.ntp.enable = true;
|
|
|
|
|
|
|
|
|
|
# Enable the OpenSSH daemon.
|
|
|
|
|
services.openssh.enable = true;
|
|
|
|
|
|
2021-11-02 10:49:28 +00:00
|
|
|
|
# Enable Hashicorp Consul & Nomad
|
|
|
|
|
services.consul.enable = true;
|
|
|
|
|
services.consul.extraConfig =
|
2021-11-18 15:40:19 +00:00
|
|
|
|
let public_ip = (builtins.head (builtins.split "/" (builtins.head node_config.networking.wireguard.interfaces.wg0.ips)));
|
2021-11-02 10:49:28 +00:00
|
|
|
|
in
|
|
|
|
|
{
|
|
|
|
|
server = true;
|
|
|
|
|
ui = true;
|
|
|
|
|
bind_addr = public_ip;
|
|
|
|
|
addresses.http = "0.0.0.0";
|
2021-11-18 15:05:44 +00:00
|
|
|
|
retry_join = [ "10.42.0.2" "10.42.0.21" "10.42.0.22" "10.42.0.23" ];
|
2021-11-02 10:49:28 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
services.nomad.enable = true;
|
|
|
|
|
services.nomad.settings =
|
2021-11-18 15:40:19 +00:00
|
|
|
|
let public_ip = (builtins.head (builtins.split "/" (builtins.head node_config.networking.wireguard.interfaces.wg0.ips)));
|
2021-11-02 10:49:28 +00:00
|
|
|
|
in
|
|
|
|
|
{
|
2021-11-18 15:40:19 +00:00
|
|
|
|
region = site_config.services.nomad.settings.datacenter;
|
2021-11-02 10:49:28 +00:00
|
|
|
|
server = {
|
|
|
|
|
enabled = true;
|
|
|
|
|
};
|
|
|
|
|
advertise = {
|
|
|
|
|
rpc = public_ip;
|
|
|
|
|
http = public_ip;
|
|
|
|
|
serf = public_ip;
|
|
|
|
|
};
|
|
|
|
|
consul.address = "127.0.0.1:8500";
|
|
|
|
|
client = {
|
|
|
|
|
enabled = true;
|
2021-11-18 15:40:19 +00:00
|
|
|
|
network_interface = "wg0";
|
2021-11-02 10:49:28 +00:00
|
|
|
|
};
|
2021-11-02 16:33:54 +00:00
|
|
|
|
plugin = [
|
|
|
|
|
{
|
|
|
|
|
docker = [
|
|
|
|
|
{
|
|
|
|
|
config = [
|
|
|
|
|
{
|
|
|
|
|
volumes.enabled = true;
|
|
|
|
|
}
|
|
|
|
|
];
|
|
|
|
|
}
|
|
|
|
|
];
|
|
|
|
|
}
|
|
|
|
|
];
|
2021-11-02 10:49:28 +00:00
|
|
|
|
};
|
|
|
|
|
|
2021-11-01 21:56:32 +00:00
|
|
|
|
# Open ports in the firewall.
|
2021-11-02 16:33:54 +00:00
|
|
|
|
networking.firewall.allowedTCPPorts = [
|
2021-11-18 15:13:28 +00:00
|
|
|
|
(builtins.head ({ openssh.ports = [22]; } // node_config.services).openssh.ports)
|
2021-11-02 16:33:54 +00:00
|
|
|
|
3900 3901 # Garage (internal RPC traffic)
|
|
|
|
|
4646 4647 4648 # Nomad
|
|
|
|
|
8500 8300 8301 8302 # Consul
|
2021-11-05 20:44:54 +00:00
|
|
|
|
19999 # Netdata
|
2021-11-02 16:33:54 +00:00
|
|
|
|
];
|
|
|
|
|
networking.firewall.allowedUDPPorts = [
|
|
|
|
|
4648 # Nomad
|
|
|
|
|
8301 8302 # Consul
|
2021-11-16 16:39:23 +00:00
|
|
|
|
node_config.networking.wireguard.interfaces.wg0.listenPort
|
2021-11-02 16:33:54 +00:00
|
|
|
|
];
|
2021-11-01 21:56:32 +00:00
|
|
|
|
# Or disable the firewall altogether.
|
|
|
|
|
# networking.firewall.enable = false;
|
|
|
|
|
|
|
|
|
|
# This value determines the NixOS release from which the default
|
|
|
|
|
# settings for stateful data, like file locations and database versions
|
|
|
|
|
# on your system were taken. It‘s perfectly fine and recommended to leave
|
|
|
|
|
# this value at the release version of the first install of this system.
|
|
|
|
|
# Before changing this value read the documentation for this option
|
|
|
|
|
# (e.g. man configuration.nix or on https://nixos.org/nixos/options.html).
|
|
|
|
|
system.stateVersion = "21.05"; # Did you read the comment?
|
|
|
|
|
}
|
|
|
|
|
|