summaryrefslogtreecommitdiffstats
path: root/audio.nix
blob: 25f9cdb2c57db6ff77019887a7a61fa01f0bb050 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{
  config,
  pkgs,
  username,
  ...
}: {
  services.pipewire = {
    enable = true;
    audio.enable = true;
    pulse.enable = true;
    alsa.enable = true;
  };

  services.pipewire.wireplumber.enable = true;
  hardware = {
    graphics = {
      enable = true;
    };
  };

  environment.systemPackages = with pkgs; [
    pavucontrol
  ];

  hjem.users.${username} = {
    files = {
      ".config/mpd/mpd.conf".source = ./dotfiles/mpd/mpd.conf;

      ".config/rmpc/config.ron".source = ./dotfiles/rmpc/config.ron;
      ".config/rmpc/themes/theme.ron".source = ./dotfiles/rmpc/themes/theme.ron;
    };
    packages = with pkgs; [
      mpc
      rmpc
    ];
  };

  systemd.user.services.mpd = {
    description = "Music Player Daemon";
    wantedBy = ["default.target"];
    serviceConfig = {
      ExecStart = "${pkgs.mpd}/bin/mpd --no-daemon /home/${username}/.config/mpd/mpd.conf";
      Restart = "on-failure";
    };
  };
}