Files
nixos-config/hosts/steamdeck/home.nix
2026-04-26 10:27:50 +02:00

28 lines
501 B
Nix

#
# Home-manager configuration for steamdeck
#
{pkgs, ...}: {
specialisation = {
sway.configuration = {
imports = [(import ../../modules/wm/sway/home.nix)];
};
};
imports =
[(import ../../modules/home.nix)]
++ [(import ../../modules/wm/steam/home.nix)];
home = {
packages = with pkgs; [
libreoffice
chromium
thunderbird
streamlink
streamlink-twitch-gui-bin
pulsemixer
];
};
xsession.preferStatusNotifierItems = true;
}