Nixfiles/hostconfig/minus/hm.nix
2024-06-27 23:09:33 +02:00

32 lines
634 B
Nix

{ config, pkgs, ... }:
{
home.username = "${config.extraInfo.username}";
home.homeDirectory = "/home/${config.extraInfo.username}";
home.packages = with pkgs; [
jellyfin-media-player
freetube
spotify
streamlink-twitch-gui-bin
firefox
];
services.spotifyd = {
enable = true;
settings.global = {
use_mpris = true;
bitrate = 320;
device_type = "t_v";
zeroconf_port = 1234;
};
};
home.sessionVariables = {
SDL_VIDEODRIVER = "wayland";
QT_QPA_PLATFORM = "wayland";
MOZ_ENABLE_WAYLAND = "1";
NIXOS_OZONE_WL = 1;
};
home.stateVersion = "23.11";
}