fix decky-loader

This commit is contained in:
willifan 2024-11-03 21:08:35 +01:00
parent cc94956b4b
commit 50b606c87d

View file

@ -1,8 +1,32 @@
{ ... }:
{ pkgs, ... }:
{
jovian = {
decky-loader.enable = true;
decky-loader = {
enable = true;
user = "willifan";
extraPackages = with pkgs; [
# Generic packages
curl
unzip
util-linux
gnugrep
readline.out
procps
pciutils
libpulseaudio
# SimpleDeckyTDP
ryzenadj # actual TDP util
kmod # modprobe for acpi_call check
];
extraPythonPackages = pythonPackages: with pythonPackages; [
pyyaml # hhd-decky
aiohttp
certifi
];
};
devices.steamdeck = {
enable = true;
enableGyroDsuService = true;
@ -15,4 +39,9 @@
desktopSession = "hyprland";
};
};
environment.systemPackages = with pkgs; [
python3
];
}