1
0
Fork 0
nix-configuration/modules/apps/dj.nix

18 lines
312 B
Nix
Raw Normal View History

2024-02-29 09:53:34 -05:00
{ config, lib, ... }:
let
cfg = config.aux.system.apps.dj;
2024-02-29 09:53:34 -05:00
in
{
options = {
2024-08-02 17:55:48 -04:00
aux.system.apps.dj.enable = lib.mkEnableOption "Enables DJing tools (i.e. Mixxx)";
};
2024-02-29 09:53:34 -05:00
2024-08-02 17:55:48 -04:00
config = lib.mkIf cfg.enable {
2024-06-25 14:13:15 -04:00
aux.system.ui.flatpak = {
enable = true;
packages = [ "org.mixxx.Mixxx" ];
};
};
}