first commit

This commit is contained in:
emptyynes 2025-09-17 16:39:03 +07:00
commit 21737592da
27 changed files with 744 additions and 0 deletions

15
servers/reine/main.nix Normal file
View file

@ -0,0 +1,15 @@
{ config, pkgs, secret, ... }:
{
imports = [
./hardware-configuration.nix
./jellyfin.nix
./traefik.nix
./firewall.nix
];
networking.hostName = "reine";
services.yggdrasil.settings.PrivateKey = secret.yggdrasil.PrivateKey;
services.yggdrasil.persistentKeys = false;
hardware.amdgpu.opencl.enable = true;
system.stateVersion = "25.05";
}