summaryrefslogtreecommitdiffstats
path: root/tv/2configs/hw/winmax2.nix
diff options
context:
space:
mode:
authortv <tv@krebsco.de>2023-09-12 12:56:39 +0200
committertv <tv@krebsco.de>2023-09-13 16:23:38 +0200
commitfbd485cd86c7e9984819357398f912a2d5510845 (patch)
treee1a9e2eedacfa25018d6b0eef3f4628a4d503ebc /tv/2configs/hw/winmax2.nix
parent5370e0485788224126861e076110ac705013d2de (diff)
tv: emigrate
Diffstat (limited to 'tv/2configs/hw/winmax2.nix')
-rw-r--r--tv/2configs/hw/winmax2.nix48
1 files changed, 0 insertions, 48 deletions
diff --git a/tv/2configs/hw/winmax2.nix b/tv/2configs/hw/winmax2.nix
deleted file mode 100644
index 7b284668..00000000
--- a/tv/2configs/hw/winmax2.nix
+++ /dev/null
@@ -1,48 +0,0 @@
-{ pkgs, ... }: {
-
- imports = [
- ../smartd.nix
- ];
-
- boot.initrd.availableKernelModules = [ "nvme" "xhci_pci" "thunderbolt" "usbhid" ];
- boot.initrd.kernelModules = [ "amdgpu" ];
- boot.kernelModules = [
- "amd-pstate"
- "kvm-amd"
- ];
- boot.kernelPackages = pkgs.linuxPackages_latest;
- boot.kernelParams = [
- "amd_pstate=passive"
- ];
-
- hardware.bluetooth.enable = true;
-
- hardware.cpu.amd.updateMicrocode = true;
- hardware.enableRedistributableFirmware = true;
-
- hardware.opengl.enable = true;
- hardware.opengl.extraPackages = [
- pkgs.amdvlk
- pkgs.rocm-opencl-icd
- pkgs.rocm-opencl-runtime
- ];
-
- networking.wireless.enable = true;
- networking.wireless.interfaces = [
- "wlp1s0"
- ];
- networking.interfaces.wlp1s0.useDHCP = true;
-
- nixpkgs.hostPlatform = "x86_64-linux";
-
- services.illum.enable = true;
-
- services.logind.extraConfig = /* ini */ ''
- HandlePowerKey=ignore
- '';
-
- tv.lidControl.enable = true;
-
- tv.hw.screens.primary.width = 2560;
- tv.hw.screens.primary.height = 1600;
-}