2021-01-27 18:22:02 +01: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’).
|
|
|
|
|
{
|
2022-04-10 11:54:58 +02:00
|
|
|
|
config,
|
|
|
|
|
lib,
|
|
|
|
|
pkgs,
|
|
|
|
|
...
|
|
|
|
|
}: let
|
|
|
|
|
secrets = config.my.secrets;
|
|
|
|
|
in {
|
|
|
|
|
imports = [
|
|
|
|
|
# Include the results of the hardware scan.
|
|
|
|
|
./hardware-configuration.nix
|
2021-04-22 20:59:54 +02:00
|
|
|
|
|
2022-04-10 11:54:58 +02:00
|
|
|
|
./home.nix
|
|
|
|
|
./secrets.nix
|
|
|
|
|
];
|
2021-01-27 18:22:02 +01:00
|
|
|
|
|
|
|
|
|
# Use the GRUB 2 boot loader.
|
|
|
|
|
boot.loader.grub.enable = true;
|
|
|
|
|
boot.loader.grub.version = 2;
|
|
|
|
|
boot.loader.grub.device = "/dev/sda"; # or "nodev" for efi only
|
|
|
|
|
|
2022-04-10 11:54:58 +02:00
|
|
|
|
boot.supportedFilesystems = ["btrfs"];
|
2021-03-24 22:04:33 +01:00
|
|
|
|
|
2021-03-25 00:40:22 +01:00
|
|
|
|
services.btrfs = {
|
|
|
|
|
autoScrub = {
|
|
|
|
|
enable = true;
|
2022-04-10 11:54:58 +02:00
|
|
|
|
fileSystems = ["/"];
|
2021-03-25 00:40:22 +01:00
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
|
2021-01-27 18:22:02 +01:00
|
|
|
|
networking.hostName = "poseidon"; # Define your hostname.
|
2021-01-27 21:49:03 +01:00
|
|
|
|
networking.domain = "alarsyo.net";
|
2021-01-27 18:22:02 +01:00
|
|
|
|
|
|
|
|
|
# Set your time zone.
|
|
|
|
|
time.timeZone = "Europe/Paris";
|
|
|
|
|
|
|
|
|
|
# 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.eno1.ipv4.addresses = [
|
|
|
|
|
{
|
|
|
|
|
address = "163.172.11.110";
|
|
|
|
|
prefixLength = 24;
|
|
|
|
|
}
|
|
|
|
|
];
|
|
|
|
|
networking.defaultGateway = {
|
|
|
|
|
address = "163.172.11.1";
|
|
|
|
|
interface = "eno1";
|
|
|
|
|
};
|
|
|
|
|
networking.nameservers = [
|
|
|
|
|
"62.210.16.6"
|
|
|
|
|
"62.210.16.7"
|
|
|
|
|
];
|
2021-02-22 18:59:37 +01:00
|
|
|
|
my.networking.externalInterface = "eno1";
|
2021-01-27 18:22:02 +01:00
|
|
|
|
|
|
|
|
|
# List services that you want to enable:
|
2021-01-27 21:49:03 +01:00
|
|
|
|
my.services = {
|
2021-08-20 00:59:28 +02:00
|
|
|
|
vaultwarden = {
|
2021-01-31 00:31:43 +01:00
|
|
|
|
enable = true;
|
|
|
|
|
privatePort = 8081;
|
|
|
|
|
websocketPort = 3012;
|
|
|
|
|
};
|
|
|
|
|
|
2021-08-09 19:34:23 +02:00
|
|
|
|
restic-backup = {
|
2021-01-30 18:11:02 +01:00
|
|
|
|
enable = true;
|
2022-03-11 18:25:40 +01:00
|
|
|
|
repo = "b2:poseidon-backup";
|
|
|
|
|
passwordFile = config.age.secrets."restic-backup/poseidon-password".path;
|
|
|
|
|
environmentFile = config.age.secrets."restic-backup/poseidon-credentials".path;
|
2021-01-30 18:11:02 +01:00
|
|
|
|
};
|
2021-01-30 21:14:27 +01:00
|
|
|
|
|
2021-02-22 15:07:29 +01:00
|
|
|
|
fail2ban = {
|
|
|
|
|
enable = true;
|
|
|
|
|
};
|
|
|
|
|
|
2021-02-19 21:21:35 +01:00
|
|
|
|
jellyfin = {
|
|
|
|
|
enable = true;
|
|
|
|
|
};
|
|
|
|
|
|
2021-03-28 22:08:19 +02:00
|
|
|
|
lohr = {
|
|
|
|
|
enable = true;
|
2021-04-08 02:19:54 +02:00
|
|
|
|
port = 8083;
|
2021-03-28 22:08:19 +02:00
|
|
|
|
};
|
|
|
|
|
|
2021-08-22 16:41:25 +02:00
|
|
|
|
navidrome = {
|
|
|
|
|
enable = true;
|
2021-08-22 17:48:45 +02:00
|
|
|
|
musicFolder.path = "${config.services.nextcloud.home}/data/alarsyo/files/Musique/Songs";
|
2021-08-22 16:41:25 +02:00
|
|
|
|
};
|
|
|
|
|
|
2021-03-23 19:31:59 +01:00
|
|
|
|
nextcloud = {
|
|
|
|
|
enable = true;
|
2022-03-11 18:42:51 +01:00
|
|
|
|
adminpassFile = config.age.secrets."nextcloud/admin-pass".path;
|
2021-03-23 19:31:59 +01:00
|
|
|
|
};
|
|
|
|
|
|
2021-07-12 19:07:39 +02:00
|
|
|
|
paperless = {
|
|
|
|
|
enable = true;
|
|
|
|
|
port = 8085;
|
2022-03-11 18:55:56 +01:00
|
|
|
|
passwordFile = config.age.secrets."paperless/admin-password".path;
|
|
|
|
|
secretKeyFile = config.age.secrets."paperless/secret-key".path;
|
2021-07-12 19:07:39 +02:00
|
|
|
|
};
|
|
|
|
|
|
2021-07-14 00:08:40 +02:00
|
|
|
|
tailscale = {
|
|
|
|
|
enable = true;
|
|
|
|
|
exitNode = true;
|
|
|
|
|
};
|
2021-07-13 23:48:41 +02:00
|
|
|
|
|
2021-02-19 22:29:04 +01:00
|
|
|
|
transmission = {
|
|
|
|
|
enable = true;
|
|
|
|
|
username = "alarsyo";
|
|
|
|
|
};
|
2021-01-27 20:55:16 +01:00
|
|
|
|
};
|
|
|
|
|
|
2021-01-27 18:22:02 +01:00
|
|
|
|
# Enable the OpenSSH daemon.
|
|
|
|
|
services.openssh.enable = true;
|
|
|
|
|
services.openssh.permitRootLogin = "no";
|
|
|
|
|
services.openssh.passwordAuthentication = false;
|
2021-05-20 14:56:36 +02:00
|
|
|
|
|
|
|
|
|
# Takes a long while to build
|
|
|
|
|
documentation.nixos.enable = false;
|
2021-01-27 18:22:02 +01:00
|
|
|
|
}
|