nixos-config/linux/protostar/gui.nix

33 lines
632 B
Nix
Raw Normal View History

2024-03-03 00:11:51 -08:00
{ config, inputs, pkgs, ... }:
2024-03-02 15:10:23 -08:00
2024-03-03 00:11:51 -08:00
let
usr = config.constants.userName;
jovianPkgs = pkgs.extend inputs.jovian.overlays.default;
in
{
home-manager.users.${usr}.home.packages = with jovianPkgs; [
(retroarch.override {
cores = with libretro; [
pcsx2
ppsspp
];
})
2024-03-03 15:04:24 -08:00
retroarch-assets
retroarch-joypad-autoconfig
2024-03-03 00:11:51 -08:00
yuzu
];
2024-03-02 15:10:23 -08:00
jovian = {
2024-03-02 15:29:23 -08:00
devices.steamdeck.enable = true;
2024-03-02 15:10:23 -08:00
steam = {
enable = true;
autoStart = true;
2024-03-03 15:04:24 -08:00
desktopSession = "plasma";
2024-03-02 15:10:23 -08:00
user = usr;
};
};
2024-03-03 15:04:24 -08:00
programs.steam.enable = true;
services.xserver.desktopManager.plasma6.enable = true;
2024-03-02 15:10:23 -08:00
}