major changes

This commit is contained in:
kenji
2025-07-20 08:57:22 -05:00
parent b86499aec5
commit 562d1f30e4
6 changed files with 16 additions and 2 deletions
+1
View File
@@ -27,6 +27,7 @@
with pkgs; [
jellyfin-media-player
usbutils
pciutils
goverlay
geekbench_6
gparted
+2
View File
@@ -49,6 +49,8 @@
hardware.bluetooth.powerOnBoot = true;
hardware.bluetooth.settings = {
General = {
AutoEnable = true;
Experimental = true;
MultiProfile = "multiple";
FastConnectable = true;
};
+1
View File
@@ -20,6 +20,7 @@ in {
grim
foot
hyprpicker
heroic-unwrapped
qalculate-qt
fuzzel
inotify-tools
+4
View File
@@ -6,6 +6,10 @@
environment.systemPackages = with pkgs; [
steam-run
];
programs.appimage.enable = true;
programs.appimage.binfmt = true;
programs.steam = {
enable = true;
remotePlay.openFirewall = true;
+5 -1
View File
@@ -17,11 +17,15 @@
jovian.decky-loader.enable = true;
jovian.decky-loader.user = "kenji";
jovian.steamos.enableBluetoothConfig = true;
# jovian.steamos.enableBluetoothConfig = true;
jovian.steamos.enableMesaPatches = true;
# jovian.devices.steamdeck.enableControllerUdevRules = true;
hardware = {
xone.enable = true;
steam-hardware.enable = true;
};
programs.nix-ld = {
enable = true;
libraries = pkgs.steam-run.args.multiPkgs pkgs;
};
}
+3 -1
View File
@@ -1,5 +1,7 @@
{
services.udev.extraRules = ''
SUBSYSTEM=="usb", ATTRS{idVendor}=="0e8d", ATTRS{idProduct}=="0616", ATTR{power/wakeup}="enabled"
# Disable USB autosuspend for the MediaTek Bluetooth device
SUBSYSTEM=="usb", ATTRS{idVendor}=="0e8d", ATTRS{idProduct}=="0616", ATTR{power/autosuspend}="-1"
ACTION=="add", SUBSYSTEM=="usb", ATTRS{idVendor}=="0e8d", ATTRS{idProduct}=="0616", ATTR{power/autosuspend_delay_ms}="-1"
'';
}