22 lines
408 B
Nix
22 lines
408 B
Nix
{ self, config, home-manager, lib, pkgs, inputs, ... }:
|
|
let
|
|
psCfg = config.pub-solar;
|
|
in
|
|
{
|
|
# Sets nrdxp.cachix.org binary cache which just speeds up some builds
|
|
imports = [ ../cachix ];
|
|
|
|
config = {
|
|
pub-solar.audio.enable = lib.mkForce true;
|
|
|
|
musnix.enable = true;
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
ardour
|
|
helm
|
|
];
|
|
|
|
services.pipewire.jack.enable = true;
|
|
};
|
|
}
|