system changes

This commit is contained in:
jjanzen 2025-01-13 22:50:36 -06:00
parent 5fce4b6474
commit 06fb089e54
2 changed files with 7 additions and 6 deletions

View file

@ -10,6 +10,7 @@ Set up home manager for my user account and import submodules. Define my user as
./fonts.nix
./programs/core.nix
./scripts/core.nix
./services/core.nix
];
home.stateVersion = "24.05";

View file

@ -5,17 +5,17 @@ Configure =mpd= as a music player.
{ config, pkgs, ... }:
{
services.mpd = {
enable = true;
musicDirectory = "/Volumes/Media/Music";
extraConfig = ''
home.packages = with pkgs; [
mpd
];
home.file."./.config/mpd/mpd.conf".text = ''
music_directory = "/Volumes/Media/Music";
audio_output {
type "osx"
name "CoreAudio"
mixer_type "software"
enabled "yes"
}
'';
};
'';
}
#+end_src