28 lines
701 B
Nix
28 lines
701 B
Nix
{
|
|
inputs,
|
|
pkgs,
|
|
myConfig,
|
|
...
|
|
}: {
|
|
imports = [
|
|
inputs.jovian.nixosModules.default
|
|
];
|
|
# environment.systemPackages = with pkgs; [inputs.jovian.packages.${system}.default];
|
|
jovian.steam.enable = true;
|
|
jovian.steam.autoStart = true;
|
|
jovian.steam.desktopSession = "hyprland";
|
|
jovian.steam.user = "${myConfig.essentials.Username}";
|
|
jovian.hardware.has.amd.gpu = true;
|
|
|
|
jovian.decky-loader.enable = true;
|
|
jovian.decky-loader.user = "kenji";
|
|
|
|
jovian.steamos.enableBluetoothConfig = true;
|
|
jovian.steamos.enableMesaPatches = true;
|
|
# jovian.devices.steamdeck.enableControllerUdevRules = true;
|
|
hardware = {
|
|
xone.enable = true;
|
|
steam-hardware.enable = true;
|
|
};
|
|
}
|