31 lines
511 B
Nix
31 lines
511 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;
|
|
}
|