about summary refs log tree commit diff
path: root/profiles/multimedia/default.nix
blob: 4c1d3fe5bafcd24997f4e19f38d9d055465d1ef9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
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;
  };
}