nixos-config/linux/protostar/gui.nix

37 lines
673 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; [
2024-03-17 12:40:09 -07:00
lutris
2024-03-03 00:11:51 -08:00
(retroarch.override {
cores = with libretro; [
pcsx2
ppsspp
];
})
2024-03-23 19:27:31 -07:00
wineWowPackages.waylandFull
winetricks
2024-03-08 20:14:20 -08:00
# yuzu
2024-03-03 00:11:51 -08:00
];
2024-03-02 15:10:23 -08:00
jovian = {
2024-03-17 12:40:09 -07:00
devices.steamdeck = {
enable = true;
autoUpdate = 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;
2024-03-22 15:00:26 -07:00
services.desktopManager.plasma6.enable = true;
2024-03-02 15:10:23 -08:00
}