28 lines
501 B
Nix
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;
|
|
}
|