10 lines
239 B
Nix
10 lines
239 B
Nix
|
{ config, lib, pkgs, ... }:
|
||
|
let np = config.nathan.programs;
|
||
|
in with lib; {
|
||
|
# Install media applications
|
||
|
config = mkIf np.media.enable {
|
||
|
homebrew.casks =
|
||
|
[ { name = "blackhole-2ch"; } { name = "deadbeef-nightly"; } ];
|
||
|
};
|
||
|
}
|