chore: refactor

This commit is contained in:
♥ Minnie ♥ 2025-05-01 12:00:03 +08:00
parent 9555f53d70
commit e73e614016
Signed by: jasmine
GPG key ID: 8563E358D4E8040E
7 changed files with 48 additions and 45 deletions

View file

@ -1,7 +1,15 @@
{...}: {
{pkgs, ...}: {
imports = [
./git.nix
./irc.nix
./mpd.nix
./nvim.nix
./remarkable.nix
./ssh.nix
./zsh.nix
];
home.packages = with pkgs; [
pulsemixer
];
}

View file

@ -1,4 +1,12 @@
{pkgs, ...}: {
# Install some applications for managing mpd
home.packages = with pkgs; [
mpc-cli
ncmpcpp
];
# Setup our mpd client service
services.mpd = {
enable = true;
musicDirectory = "nfs://viridian.home.arpa/srv/multimedia/library/music";
@ -17,9 +25,4 @@
}
'';
};
services.mpd-discord-rpc = {
enable = true;
package = pkgs.unstable.mpd-discord-rpc;
};
}