about summary refs log tree commit diff
path: root/profiles/multimedia
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2022-04-09 09:42:03 -0700
committerFranck Cuny <franck@fcuny.net>2022-04-09 09:42:03 -0700
commit1125aaa49aec6a220fd3b9d03076fec398b35a14 (patch)
tree5570b0c094ead9d7879ca3d360ff3de7f45d4516 /profiles/multimedia
parentdelete all CLI modules (diff)
downloadworld-1125aaa49aec6a220fd3b9d03076fec398b35a14.tar.gz
add a few more modules to home/ and delete stuff
Diffstat (limited to 'profiles/multimedia')
-rw-r--r--profiles/multimedia/default.nix12
1 files changed, 12 insertions, 0 deletions
diff --git a/profiles/multimedia/default.nix b/profiles/multimedia/default.nix
new file mode 100644
index 0000000..4c1d3fe
--- /dev/null
+++ b/profiles/multimedia/default.nix
@@ -0,0 +1,12 @@
+{ config, lib, ... }:
+let cfg = config.my.profiles.multimedia;
+in {
+  options.my.profiles.multimedia = with lib; {
+    enable = mkEnableOption "multimedia profile";
+  };
+  config = lib.mkIf cfg.enable {
+    my.home.vlc.enable = true;
+    my.home.mpv.enable = true;
+    my.home.sublime-music.enable = true;
+  };
+}