system changes
This commit is contained in:
parent
67e703b623
commit
5fce4b6474
4 changed files with 62 additions and 0 deletions
|
@ -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
|
||||
|
|
28
macos.local/.flake/home/programs/ncmpcpp.nix.org
Normal file
28
macos.local/.flake/home/programs/ncmpcpp.nix.org
Normal 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
|
12
macos.local/.flake/home/services/core.nix.org
Normal file
12
macos.local/.flake/home/services/core.nix.org
Normal file
|
@ -0,0 +1,12 @@
|
|||
#+title: Service Configuration
|
||||
|
||||
Load service configurations.
|
||||
#+begin_src nix
|
||||
{ config, pkgs, ... }:
|
||||
|
||||
{
|
||||
imports = [
|
||||
./mpd.nix
|
||||
];
|
||||
}
|
||||
#+end_src
|
21
macos.local/.flake/home/services/mpd.nix.org
Normal file
21
macos.local/.flake/home/services/mpd.nix.org
Normal 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
|
Loading…
Add table
Reference in a new issue