nixos-config/linux/protostar/gui.nix

56 lines
973 B
Nix
Raw Normal View History

2024-08-14 11:14:20 -07:00
{
config,
inputs,
pkgs,
...
}: let
2024-08-31 21:13:43 -07:00
userName = config.constants.userName;
2024-03-03 00:11:51 -08:00
jovianPkgs = pkgs.extend inputs.jovian.overlays.default;
2024-08-14 11:14:20 -07:00
in {
2024-08-31 21:13:43 -07:00
home-manager.users.${userName} = {
2024-06-15 17:37:25 -07:00
home.packages = with jovianPkgs; [
2024-06-16 00:05:42 -07:00
feishin
2024-06-15 17:37:25 -07:00
lutris
2024-06-16 17:05:31 -07:00
maliit-keyboard
2024-06-15 17:37:25 -07:00
(retroarch.override {
cores = with libretro; [
pcsx2
ppsspp
];
})
ryujinx
winetricks
wineWowPackages.stagingFull
];
};
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-08-31 21:13:43 -07:00
user = userName;
2024-03-02 15:10:23 -08:00
};
};
2024-03-03 15:04:24 -08:00
2024-06-24 14:13:12 -07:00
services = {
desktopManager.plasma6.enable = true;
pipewire = {
enable = true;
alsa = {
enable = true;
support32Bit = true;
};
pulse.enable = true;
};
};
hardware = {
bluetooth.enable = true;
graphics.enable = true;
};
2024-03-02 15:10:23 -08:00
}