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 = {
|
||||
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
|
||||
];
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue