refactor(koumakyou): clean up jovian config
This commit is contained in:
parent
4d77320203
commit
ab7e7606f0
|
@ -1,4 +1,4 @@
|
||||||
{ pkgs, lib, config, ... }: {
|
{ pkgs, lib, config, jovian, ... }: {
|
||||||
global = {
|
global = {
|
||||||
id = "0a920a834b5f480bab258040096d4c6e";
|
id = "0a920a834b5f480bab258040096d4c6e";
|
||||||
fs.esp.uuid = "ACB3-4AFF";
|
fs.esp.uuid = "ACB3-4AFF";
|
||||||
|
@ -41,11 +41,8 @@
|
||||||
console.earlySetup = true;
|
console.earlySetup = true;
|
||||||
|
|
||||||
specialisation.desktop.configuration = {
|
specialisation.desktop.configuration = {
|
||||||
programs.regreet.enable = lib.mkForce true;
|
global.jovian = false;
|
||||||
jovian.steam.autoStart = lib.mkForce false;
|
jovian.steamos.useSteamOSConfig = false;
|
||||||
jovian.steam.desktopSession = lib.mkForce "sway";
|
|
||||||
jovian.decky-loader.enable = lib.mkForce false;
|
|
||||||
home.plasma.enable = lib.mkForce false;
|
|
||||||
services.greetd.settings.default_session.command = let
|
services.greetd.settings.default_session.command = let
|
||||||
cfg = config.programs.regreet;
|
cfg = config.programs.regreet;
|
||||||
in "${pkgs.dbus}/bin/dbus-run-session ${lib.getExe pkgs.cage} ${lib.escapeShellArgs cfg.cageArgs} -- ${pkgs.writeShellScript "cageResolution" ''
|
in "${pkgs.dbus}/bin/dbus-run-session ${lib.getExe pkgs.cage} ${lib.escapeShellArgs cfg.cageArgs} -- ${pkgs.writeShellScript "cageResolution" ''
|
||||||
|
@ -67,5 +64,8 @@
|
||||||
boot.extraModulePackages = [ ];
|
boot.extraModulePackages = [ ];
|
||||||
hardware.cpu.intel.updateMicrocode = true;
|
hardware.cpu.intel.updateMicrocode = true;
|
||||||
|
|
||||||
imports = [ ./jovian.nix ];
|
imports = [
|
||||||
|
jovian.nixosModules.jovian
|
||||||
|
./jovian.nix
|
||||||
|
];
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,90 +1,66 @@
|
||||||
{ pkgs, lib, config, jovian, ... }: {
|
{ pkgs, lib, config, ... }: with lib; {
|
||||||
imports = [
|
options.global.jovian = mkEnableOption "set up Jovian NixOS" // { default = true; };
|
||||||
jovian.nixosModules.jovian
|
|
||||||
];
|
|
||||||
|
|
||||||
jovian = {
|
config = mkIf config.global.jovian {
|
||||||
hardware.has.amd.gpu = true;
|
jovian = {
|
||||||
steamos.useSteamOSConfig = true;
|
hardware.has.amd.gpu = true;
|
||||||
steamos.enableDefaultCmdlineConfig = false;
|
steamos.useSteamOSConfig = true;
|
||||||
|
#steamos.enableDefaultCmdlineConfig = false;
|
||||||
|
|
||||||
steam = {
|
steam = {
|
||||||
|
enable = true;
|
||||||
|
autoStart = true;
|
||||||
|
desktopSession = "plasma";
|
||||||
|
user = "app";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
users.home.persistApp.directories = [
|
||||||
|
".steam" ".local/share/Steam"
|
||||||
|
".config/gamescope" ".config/hhd"
|
||||||
|
".kodi"
|
||||||
|
];
|
||||||
|
|
||||||
|
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;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
home-manager.users.app.home.packages = with pkgs; [
|
||||||
|
(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
|
||||||
|
]))
|
||||||
|
];
|
||||||
|
|
||||||
|
services.handheld-daemon = {
|
||||||
enable = true;
|
enable = true;
|
||||||
autoStart = true;
|
|
||||||
desktopSession = "plasma";
|
|
||||||
user = "app";
|
user = "app";
|
||||||
};
|
};
|
||||||
};
|
|
||||||
|
|
||||||
users.home.persistApp.directories = [
|
jovian.decky-loader = {
|
||||||
".steam" ".local/share/Steam"
|
# ~/.steam/steam/.cef-enable-remote-debugging
|
||||||
".config/gamescope" ".config/hhd"
|
enable = true;
|
||||||
".kodi"
|
user = "app";
|
||||||
];
|
extraPackages = with pkgs; [
|
||||||
|
curl unzip util-linux gnugrep procps pciutils kmod ryzenadj
|
||||||
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;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
home-manager.users.app.home.packages = with pkgs; [
|
|
||||||
(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
|
|
||||||
]))
|
|
||||||
];
|
|
||||||
|
|
||||||
services.handheld-daemon = {
|
|
||||||
enable = true;
|
|
||||||
user = "app";
|
|
||||||
};
|
|
||||||
|
|
||||||
jovian.decky-loader = let
|
|
||||||
adjustor = pkgs.python3.pkgs.buildPythonApplication rec {
|
|
||||||
pname = "adjustor";
|
|
||||||
version = "2.1.5";
|
|
||||||
pyproject = true;
|
|
||||||
|
|
||||||
src = pkgs.fetchFromGitHub {
|
|
||||||
owner = "hhd-dev";
|
|
||||||
repo = pname;
|
|
||||||
rev = "v${version}";
|
|
||||||
hash = "sha256-KgeK2lC3b9VbjYmy7rD/ImODWDDx3pWIzWgNnSLJeDs=";
|
|
||||||
};
|
|
||||||
|
|
||||||
propagatedBuildInputs = with pkgs.python3.pkgs; [
|
|
||||||
setuptools
|
|
||||||
pyroute2
|
|
||||||
rich
|
|
||||||
];
|
];
|
||||||
|
extraPythonPackages = pythonPackages: with pythonPackages; [
|
||||||
# This package doesn't have upstream tests.
|
hid pyyaml
|
||||||
doCheck = false;
|
];
|
||||||
|
stateDir = "/nix/persist/decky";
|
||||||
};
|
};
|
||||||
in {
|
|
||||||
# ~/.steam/steam/.cef-enable-remote-debugging
|
|
||||||
enable = true;
|
|
||||||
user = "app";
|
|
||||||
extraPackages = with pkgs; [
|
|
||||||
curl unzip util-linux gnugrep procps pciutils kmod
|
|
||||||
ryzenadj # adjustor
|
|
||||||
];
|
|
||||||
extraPythonPackages = pythonPackages: with pythonPackages; [
|
|
||||||
hid pyyaml
|
|
||||||
# adjustor
|
|
||||||
];
|
|
||||||
stateDir = "/nix/persist/decky";
|
|
||||||
};
|
|
||||||
|
|
||||||
boot.kernelParams = lib.mkIf config.jovian.decky-loader.enable [ "iomem=relaxed" "amd_pstate=passive" ];
|
boot.kernelParams = [ "iomem=relaxed" "amd_pstate=passive" ];
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue