1
0
Fork 0
nix-configuration/modules/apps/dj.nix
2024-06-25 14:13:15 -04:00

19 lines
322 B
Nix

{ config, lib, ... }:
let
cfg = config.aux.system.apps.dj;
in
with lib;
{
options = {
aux.system.apps.dj.enable = mkEnableOption (mdDoc "Enables DJing tools (i.e. Mixxx)");
};
config = mkIf cfg.enable {
aux.system.ui.flatpak = {
enable = true;
packages = [ "org.mixxx.Mixxx" ];
};
};
}