Files
2026-01-09 23:54:23 +08:00

22 lines
441 B
Nix

{ config, lib, ... }:
let
cfg = config.my.desktop.media.all;
in
{
options.my.desktop.media.all = {
enable = lib.mkEnableOption "all desktop media things";
};
config = lib.mkIf cfg.enable {
my.desktop.media = {
mpv.enable = true;
shotwell.enable = true;
thunderbird.enable = true;
vlc.enable = true;
splayer.enable = true;
spotify.enable = true;
spotube.enable = true;
};
};
}