Files
ccl-nixos-dotfiles/modules/desktop/media/all.nix
2025-04-13 15:09:14 +08:00

21 lines
385 B
Nix

{ config, lib, ... }:
lib.my.makeSwitch {
inherit config;
optionName = "all desktop media things";
optionPath = [
"desktop"
"media"
"all"
];
config' = {
my.desktop.media = {
mpv.enable = true;
shotwell.enable = true;
thunderbird.enable = true;
vlc.enable = true;
spotify.enable = true;
spotube.enable = true;
};
};
}