Add profile for a digital audio workstation
This commit is contained in:
parent
98751b66c9
commit
91c8eea69f
2 changed files with 26 additions and 0 deletions
|
@ -38,6 +38,10 @@
|
|||
nixos-hardware.url = "github:nixos/nixos-hardware";
|
||||
|
||||
nixos-generators.url = "github:nix-community/nixos-generators";
|
||||
|
||||
# hensoko additions
|
||||
musnix.url = "github:musnix/musnix";
|
||||
musnix.inputs.nixpkgs.follows = "nixos";
|
||||
};
|
||||
|
||||
outputs =
|
||||
|
@ -50,6 +54,7 @@
|
|||
, agenix
|
||||
, nvfetcher
|
||||
, deploy
|
||||
, musnix
|
||||
, ...
|
||||
} @ inputs:
|
||||
digga.lib.mkFlake
|
||||
|
@ -96,6 +101,7 @@
|
|||
digga.nixosModules.nixConfig
|
||||
home.nixosModules.home-manager
|
||||
agenix.nixosModules.age
|
||||
musnix.nixosModules.musnix
|
||||
];
|
||||
};
|
||||
|
||||
|
|
20
profiles/daw/default.nix
Normal file
20
profiles/daw/default.nix
Normal file
|
@ -0,0 +1,20 @@
|
|||
{ 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; [
|
||||
bitwig-studio
|
||||
];
|
||||
|
||||
services.pipewire.jack.enable = true;
|
||||
};
|
||||
}
|
Loading…
Add table
Reference in a new issue