nixos/spec/koumakyou/jovian.nix

110 lines
2.3 KiB
Nix
Raw Normal View History

2025-01-13 11:52:09 +08:00
{
pkgs,
lib,
config,
...
}:
with lib;
{
options.global.jovian = mkEnableOption "set up Jovian NixOS" // {
default = true;
};
2024-05-11 00:03:05 +08:00
config = mkIf config.global.jovian {
jovian = {
hardware.has.amd.gpu = true;
steamos.useSteamOSConfig = true;
steamos.enableDefaultCmdlineConfig = false;
2024-04-29 22:36:32 +08:00
steam = {
enable = true;
autoStart = true;
desktopSession = "plasma";
user = "app";
};
2024-04-29 22:36:32 +08:00
};
users.home.persistApp.directories = [
2025-01-13 11:52:09 +08:00
".steam"
".local/share/Steam"
".config/gamescope"
".config/hhd"
".kodi"
];
2024-04-29 22:36:32 +08:00
2025-01-13 11:52:09 +08:00
users.users.app.extraGroups = [
"networkmanager"
"gamemode"
];
programs.gamemode.enable = true;
programs.regreet.enable = false;
home.plasma.enable = true;
home.plasma.extraConfig = {
configFile = {
kwinrc.Xwayland.Scale = 1.75;
kscreenlockerrc.Daemon.Autolock = false;
};
2024-05-14 12:14:35 +08:00
};
2024-07-27 23:05:13 +08:00
home-manager.users.app = {
home.packages = with pkgs; [
2025-01-13 11:52:09 +08:00
(pkgs.kodi-wayland.passthru.withPackages (
kodiPkgs: with kodiPkgs; [
joystick # keymap steam-controller
#controller-topology-project
libretro
libretro-2048
libretro-fuse
libretro-genplus
libretro-mgba
libretro-nestopia
libretro-snes9x
jellycon
]
))
2024-07-27 23:05:13 +08:00
];
home.pointerCursor = {
package = pkgs.steamdeck-hw-theme;
name = "steam";
};
};
services.handheld-daemon = {
enable = true;
user = "app";
};
jovian.decky-loader = {
# ~/.steam/steam/.cef-enable-remote-debugging
enable = true;
user = "app";
extraPackages = with pkgs; [
2025-01-13 11:52:09 +08:00
curl
unzip
util-linux
gnugrep
procps
pciutils
kmod
ryzenadj
];
2025-01-13 11:52:09 +08:00
extraPythonPackages =
pythonPackages: with pythonPackages; [
hid
pyyaml
];
stateDir = "/nix/persist/decky";
};
boot.kernelParams = [
"iomem=relaxed"
"amd_pstate=passive"
];
services.udev.extraRules = ''
SUBSYSTEM=="power_supply", ATTR{online}=="0", RUN+="${pkgs.ryzenadj}/bin/ryzenadj --max-performance"
'';
};
2024-04-29 22:36:32 +08:00
}