nixos-config/linux/protostar/gui.nix

36 lines
752 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-09-22 00:44:00 -07:00
home-manager.users.${userName} = {config, ...}: {
home = {
file.".local/share/fonts".source = config.lib.file.mkOutOfStoreSymlink "/run/current-system/sw/share/X11/fonts";
packages = with jovianPkgs; [
lutris
2025-07-21 23:37:00 -05:00
retroarch-free
2024-09-22 00:44:00 -07:00
winetricks
wineWowPackages.stagingFull
];
};
2024-06-15 17:37:25 -07: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-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
2025-06-29 13:48:55 -05:00
services.desktopManager.plasma6.enable = true;
2024-03-02 15:10:23 -08:00
}