nixos-config/linux/protostar/gui.nix

58 lines
1 KiB
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
{
2024-06-15 17:37:25 -07:00
home-manager.users.${usr} = {
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
];
programs = {
firefox.enable = true;
plasma.enable = true;
};
};
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
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
}