fix decky-loader
This commit is contained in:
parent
cc94956b4b
commit
50b606c87d
1 changed files with 31 additions and 2 deletions
|
@ -1,8 +1,32 @@
|
||||||
{ ... }:
|
{ pkgs, ... }:
|
||||||
{
|
{
|
||||||
|
|
||||||
jovian = {
|
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 = {
|
devices.steamdeck = {
|
||||||
enable = true;
|
enable = true;
|
||||||
enableGyroDsuService = true;
|
enableGyroDsuService = true;
|
||||||
|
@ -15,4 +39,9 @@
|
||||||
desktopSession = "hyprland";
|
desktopSession = "hyprland";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
environment.systemPackages = with pkgs; [
|
||||||
|
python3
|
||||||
|
];
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue