aboutsummaryrefslogtreecommitdiff
path: root/home.nix
diff options
context:
space:
mode:
authorAkshay Nair <phenax5@gmail.com>2020-12-24 23:03:41 +0530
committerAkshay Nair <phenax5@gmail.com>2020-12-24 23:03:41 +0530
commitb5ea16e08a96c1e47639345d6d044da39225318a (patch)
tree099f9077b0230c1491b991f513930fc3ee4029f6 /home.nix
parent96a1dfbd6af9298a6f542170e8f00e5fc461e733 (diff)
downloadnixos-config-b5ea16e08a96c1e47639345d6d044da39225318a.tar.gz
nixos-config-b5ea16e08a96c1e47639345d6d044da39225318a.zip
Adds mpd and ncmpcpp configs
Diffstat (limited to 'home.nix')
-rw-r--r--home.nix17
1 files changed, 4 insertions, 13 deletions
diff --git a/home.nix b/home.nix
index 120edd8..b75e10f 100644
--- a/home.nix
+++ b/home.nix
@@ -2,12 +2,13 @@
let
localPkgs = import ./packages/default.nix { pkgs = pkgs; };
in {
- imports = [ ./overlays-home.nix ];
+ imports = [
+ ./modules/music.nix
+ ./overlays-home.nix
+ ];
home.packages = with pkgs; [
yarn
- ncmpcpp
- #pass
];
programs.lsd = {
@@ -68,16 +69,6 @@ in {
tray = "always";
};
- services.mpd = {
- enable = true;
- musicDirectory = "${config.home.homeDirectory}/Downloads/music";
- playlistDirectory = "${config.home.homeDirectory}/Downloads/music/playlist";
- network = {
- listenAddress = "127.0.0.1";
- port = 6600;
- };
- };
-
programs.password-store = {
enable = true;
package = pkgs.pass.withExtensions(exts: [ exts.pass-otp ]);