15 lines
353 B
Nix
15 lines
353 B
Nix
{ 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";
|
|
}
|