m 2 audio: init
This commit is contained in:
parent
97fe384437
commit
ba699fc05a
45
2configs/audio/jack-on-pulse.nix
Normal file
45
2configs/audio/jack-on-pulse.nix
Normal file
|
@ -0,0 +1,45 @@
|
|||
{ config, pkgs, ... }:
|
||||
let
|
||||
pulse = pkgs.pulseaudioFull;
|
||||
user = config.makefu.gui.user;
|
||||
in
|
||||
{
|
||||
sound.enable = true;
|
||||
hardware.pulseaudio = {
|
||||
enable = true;
|
||||
package = pulse;
|
||||
};
|
||||
|
||||
environment.systemPackages = with pkgs; [ jack2Full ];
|
||||
# from http://anderspapitto.com/posts/2015-11-26-overtone-on-nixos-with-jack-and-pulseaudio.html
|
||||
|
||||
systemd.services = {
|
||||
jackdbus = {
|
||||
description = "Runs jack, and points pulseaudio at it";
|
||||
serviceConfig = {
|
||||
User = user;
|
||||
Type = "oneshot";
|
||||
ExecStart = pkgs.writeScript "start_jack.sh" ''
|
||||
#! ${pkgs.bash}/bin/bash
|
||||
. ${config.system.build.setEnvironment}
|
||||
sleep 5 # wait for the gui to load
|
||||
|
||||
${pkgs.jack2Full}/bin/jack_control start
|
||||
sleep 3 # give some time for sources/sinks to be created
|
||||
|
||||
${pulse}/bin/pacmd set-default-sink jack_out
|
||||
${pulse}/bin/pacmd set-default-source jack_in
|
||||
'';
|
||||
ExecStop = pkgs.writeScript "stop_jack.sh" ''
|
||||
#! ${pkgs.bash}/bin/bash
|
||||
. ${config.system.build.setEnvironment}
|
||||
|
||||
${pkgs.jack2Full}/bin/jack_control stop
|
||||
'';
|
||||
RemainAfterExit = true;
|
||||
};
|
||||
after = [ "display-manager.service" "sound.target" ];
|
||||
wantedBy = [ "multi-user.target" ];
|
||||
};
|
||||
};
|
||||
}
|
12
2configs/audio/realtime-audio.nix
Normal file
12
2configs/audio/realtime-audio.nix
Normal file
|
@ -0,0 +1,12 @@
|
|||
{ config, pkgs, ... }:
|
||||
let
|
||||
user = config.makefu.gui.user;
|
||||
in
|
||||
{
|
||||
imports = [
|
||||
../sources/musnix.nix # populate musnix
|
||||
<musnix>
|
||||
];
|
||||
musnix.enable = true;
|
||||
users.users."${user}".extraGroups = [ "audio" ];
|
||||
}
|
7
2configs/sources/default.nix
Normal file
7
2configs/sources/default.nix
Normal file
|
@ -0,0 +1,7 @@
|
|||
# the builder pc (my laptop) will also require the sources i use to deploy
|
||||
# other boxes
|
||||
{
|
||||
imports = [
|
||||
./musnix.nix
|
||||
];
|
||||
}
|
6
2configs/sources/musnix.nix
Normal file
6
2configs/sources/musnix.nix
Normal file
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
krebs.build.source.musnix.git = {
|
||||
url = https://github.com/musnix/musnix.git;
|
||||
ref = "37a8378";
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue