Add chromecast support.

This commit is contained in:
Tom Alexander
2025-01-19 13:44:01 -05:00
parent d365b6aea9
commit 938f8676ff
3 changed files with 16 additions and 1 deletions

View File

@@ -54,6 +54,7 @@
./roles/vscode
./roles/wasm
./roles/vnc_client
./roles/chromecast
];
nix.settings.experimental-features = [

View File

@@ -22,7 +22,7 @@
boot.kernelParams = [
"amdgpu.abmlevel=3"
"pcie_aspm=force"
"pcie_aspm.policy=powersupersave"
# "pcie_aspm.policy=powersupersave"
"nowatchdog"
# I don't see a measurable benefit from these two:
# "cpufreq.default_governor=powersave"

View File

@@ -0,0 +1,14 @@
{
config,
lib,
pkgs,
...
}:
{
imports = [ ];
environment.systemPackages = with pkgs; [
catt
];
}