temporary chaos

This commit is contained in:
emptyynes 2025-10-19 11:14:51 +07:00
parent 3032768cc9
commit 8e31bd6c02
27 changed files with 490 additions and 106 deletions

View file

@ -1,11 +1,13 @@
{ config, pkgs, secret, ... }:
{ config, pkgs, pkgs-projecta, secret, ... }:
{
imports = [
./hardware-configuration.nix
./jellyfin.nix
./nginx.nix
./qbittorrent.nix
./firewall.nix
./n8n.nix
];
networking.hostName = "reine";
services.yggdrasil.settings.PrivateKey = secret.yggdrasil.PrivateKey;
@ -19,6 +21,22 @@
hardware.graphics.enable32Bit = true;
hardware.amdgpu.overdrive.enable = true;
hardware.amdgpu.overdrive.ppfeaturemask = "0xffffffff";
environment.systemPackages = with pkgs; [ clinfo mesa.opencl ];
time.timeZone = "Asia/Novosibirsk";
environment.systemPackages = with pkgs; [
clinfo
mesa.opencl
temurin-jre-bin-24
];
system.stateVersion = "25.05";
services.affine = {
enable = true;
env = secret.affine.env;
revision = secret.affine.revision;
};
networking.firewall.allowedTCPPorts = [ 4001 ];
networking.firewall.allowedUDPPorts = [ 4001 ];
nixpkgs.config.allowUnfree = true;
}