about summary refs log tree commit diff
path: root/users
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2022-02-10 08:43:57 -0800
committerFranck Cuny <franck@fcuny.net>2022-02-10 08:43:57 -0800
commite3dbbcc18c3c14d1eed79b9c05111306a55865ab (patch)
treee7d7aa19ac0328ef78de309f8e93c397deef4374 /users
parenthome-manager: fix typo for polybar (diff)
downloadworld-e3dbbcc18c3c14d1eed79b9c05111306a55865ab.tar.gz
home-manager: mpd and ncmpcpp configuration
Diffstat (limited to 'users')
-rw-r--r--users/fcuny/desktop.nix1
-rw-r--r--users/fcuny/media.nix10
2 files changed, 11 insertions, 0 deletions
diff --git a/users/fcuny/desktop.nix b/users/fcuny/desktop.nix
index 46dd058..d52d596 100644
--- a/users/fcuny/desktop.nix
+++ b/users/fcuny/desktop.nix
@@ -52,6 +52,7 @@
   imports = [
     ./common.nix
     ./i3.nix
+    ./media.nix
     ./terminal.nix
   ];
 }
diff --git a/users/fcuny/media.nix b/users/fcuny/media.nix
new file mode 100644
index 0000000..a2ae03c
--- /dev/null
+++ b/users/fcuny/media.nix
@@ -0,0 +1,10 @@
+{
+  home.packages = [
+    mpd
+    mpc
+    ncmpcpp
+  ]
+
+  xdg.configFile."mpd/mpd.conf".source = ../../configs/mpd/mpd.conf;
+  xdg.configFile."ncmpcpp/config".source = ../../configs/ncmpcpp/config;
+}