forked from pub-solar/os
add profiles.daw
This commit is contained in:
parent
d8a09bf213
commit
d36b32c84e
|
@ -41,6 +41,10 @@
|
||||||
nixos-hardware.url = "github:nixos/nixos-hardware";
|
nixos-hardware.url = "github:nixos/nixos-hardware";
|
||||||
|
|
||||||
nixos-generators.url = "github:nix-community/nixos-generators";
|
nixos-generators.url = "github:nix-community/nixos-generators";
|
||||||
|
|
||||||
|
# hensoko additions
|
||||||
|
musnix.url = "github:musnix/musnix";
|
||||||
|
musnix.inputs.nixpkgs.follows = "nixos";
|
||||||
};
|
};
|
||||||
|
|
||||||
outputs =
|
outputs =
|
||||||
|
@ -53,6 +57,7 @@
|
||||||
, agenix
|
, agenix
|
||||||
, nvfetcher
|
, nvfetcher
|
||||||
, deploy
|
, deploy
|
||||||
|
, musnix
|
||||||
, ...
|
, ...
|
||||||
} @ inputs:
|
} @ inputs:
|
||||||
digga.lib.mkFlake
|
digga.lib.mkFlake
|
||||||
|
@ -102,6 +107,7 @@
|
||||||
digga.nixosModules.nixConfig
|
digga.nixosModules.nixConfig
|
||||||
home.nixosModules.home-manager
|
home.nixosModules.home-manager
|
||||||
agenix.nixosModules.age
|
agenix.nixosModules.age
|
||||||
|
musnix.nixosModules.musnix
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
21
profiles/daw/default.nix
Normal file
21
profiles/daw/default.nix
Normal file
|
@ -0,0 +1,21 @@
|
||||||
|
{ 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;
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue