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

18 lines
321 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
with lib;
{
options = {
aux.system.apps.dj.enable = mkEnableOption (mdDoc "Enables DJing tools (i.e. Mixxx)");
};
2024-02-29 09:53:34 -05:00
config = mkIf cfg.enable {
aux.system.ui.flatpak.enable = true;
2024-02-29 09:53:34 -05:00
services.flatpak.packages = [ "org.mixxx.Mixxx" ];
};
}