ctucx.git: nixfiles

ctucx' nixfiles

commit 4ae2c11878e50232dbdbf84fbc06e0460eb6e684
parent 988eb40b6d7c96d2044a6c113c9eeec03dca7300
Author: Leah (ctucx) <leah@ctu.cx>
Date: Sat, 9 Oct 2021 20:31:02 +0200

programs/mpv: create
1 file changed, 14 insertions(+), 0 deletions(-)
diff --git a/configurations/programs/mpv.nix b/configurations/programs/mpv.nix
@@ -0,0 +1,14 @@
+{ lib, config, pkgs, ... }:
+
+{
+  home-manager.users.leah = {
+    programs = {
+      mpv = {
+        enable = true;
+        scripts = [
+          pkgs.mpvScripts.mpris
+        ];
+      };
+    };
+  };
+}