system changes

This commit is contained in:
jjanzen 2025-01-13 22:42:40 -06:00
parent 67e703b623
commit 5fce4b6474
4 changed files with 62 additions and 0 deletions

View file

@ -10,6 +10,7 @@ Import configurations for programs and install programs with no configuration.
./fastfetch.nix
./ghostty.nix
./git.nix
./ncmpcpp.nix
./neovim.nix
./ssh.nix
./zsh/core.nix

View file

@ -0,0 +1,28 @@
#+title: =ncmpcpp= Configuration
Enable =vi=-like controls and specify directories and =mpd= address.
#+begin_src nix
{ config, pkgs, ... }:
{
programs.ncmpcpp = {
enable = true;
bindings = [
{ key = "j"; command = "scroll_down"; }
{ key = "k"; command = "scroll_up"; }
{ key = "h"; command = "previous_column"; }
{ key = "l"; command = "next_column"; }
{ key = "g"; command = "move_home"; }
{ key = "G"; command = "move_end"; }
{ key = "n"; command = "next_found_item"; }
{ key = "N"; command = "previous_found_item"; }
];
mpdMusicDir = "/Volumes/Media/Music";
settings = {
ncmpcpp_directory = "~/.config/nmcpcpp";
mpd_host = "localhost";
mpd_port = "6600";
};
};
}
#+end_src

View file

@ -0,0 +1,12 @@
#+title: Service Configuration
Load service configurations.
#+begin_src nix
{ config, pkgs, ... }:
{
imports = [
./mpd.nix
];
}
#+end_src

View file

@ -0,0 +1,21 @@
#+title: =mpd= Configuration
Configure =mpd= as a music player.
#+begin_src nix
{ config, pkgs, ... }:
{
services.mpd = {
enable = true;
musicDirectory = "/Volumes/Media/Music";
extraConfig = ''
audio_output {
type "osx"
name "CoreAudio"
mixer_type "software"
enabled "yes"
}
'';
};
}
#+end_src