aboutsummaryrefslogtreecommitdiff
path: root/users/fcuny
diff options
context:
space:
mode:
Diffstat (limited to 'users/fcuny')
-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;
+}