diff options
author | Vincent Ambo <tazjin@gmail.com> | 2017-11-02T15·50+0100 |
---|---|---|
committer | Vincent Ambo <tazjin@gmail.com> | 2017-11-02T15·51+0100 |
commit | 4dcb1df11c8bb925e5beae4c7cb138056490afa2 (patch) | |
tree | 4efe0388d5875c87d79b95dc6fe978898f543fc7 /configuration.nix | |
parent | 87f46244aef0819032c50bacf24bd41ea21930b7 (diff) |
feat: Configure JACK setup for use with Overtone
Diffstat (limited to 'configuration.nix')
-rw-r--r-- | configuration.nix | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/configuration.nix b/configuration.nix index 6ca796699056..3ea65328c7af 100644 --- a/configuration.nix +++ b/configuration.nix @@ -20,6 +20,10 @@ hardware.pulseaudio.enable = true; time.timeZone = "Europe/Oslo"; + # Configure audio setup for JACK + Overtone + boot.kernelModules = [ "snd-seq" "snd-rawmidi" ]; + hardware.pulseaudio.package = pkgs.pulseaudioFull; + # Configure emacs: # (actually, that's a lie, this only installs emacs!) services.emacs.enable = true; |