boxen/home/jez/machines/gwydion.nix

34 lines
565 B
Nix
Raw Normal View History

2020-11-10 09:08:56 +00:00
{ pkgs, config, ... }:
2020-11-10 09:08:56 +00:00
let
h = config.home.homeDirectory;
in
{
home.packages = with pkgs; [
steam minecraft
2020-11-13 17:19:50 +00:00
fahcontrol
];
services.mpd = {
enable = true;
2020-11-10 09:08:56 +00:00
musicDirectory = h + "/Music/Best";
network.listenAddress = "any";
extraConfig = ''
audio_output {
type "pulse"
name "Shared output (pulseaudio)"
}
audio_output {
type "jack"
name "Jack output"
}
'';
};
programs.ncmpcpp.enable = true;
services.mpdris2 = {
enable = true;
mpd.host = "127.0.0.1";
};
}