nixos-config/linux/protostar/gui.nix
2024-06-16 17:05:31 -07:00

49 lines
919 B
Nix

{ config, inputs, pkgs, ... }:
let
usr = config.constants.userName;
jovianPkgs = pkgs.extend inputs.jovian.overlays.default;
in
{
home-manager.users.${usr} = {
home.packages = with jovianPkgs; [
feishin
lutris
maliit-keyboard
(retroarch.override {
cores = with libretro; [
pcsx2
ppsspp
];
})
ryujinx
winetricks
wineWowPackages.stagingFull
];
programs = {
firefox.enable = true;
plasma.enable = true;
};
};
i18n.supportedLocales = [
"C.UTF-8/UTF-8"
"en_US.UTF-8/UTF-8"
"ja_JP.UTF-8/UTF-8"
"zh_CN.UTF-8/UTF-8"
];
jovian = {
devices.steamdeck = {
enable = true;
autoUpdate = true;
};
steam = {
enable = true;
autoStart = true;
desktopSession = "plasma";
user = usr;
};
};
services.desktopManager.plasma6.enable = true;
}