Disables jack, uses plain alsa.
This commit is contained in:
parent
7788925216
commit
f41af3f7e6
|
@ -9,8 +9,6 @@
|
||||||
hardware.opengl.enable = true;
|
hardware.opengl.enable = true;
|
||||||
|
|
||||||
sound.enable = true;
|
sound.enable = true;
|
||||||
services.jack.jackd.enable = true;
|
|
||||||
services.jack.alsa.enable = true;
|
|
||||||
|
|
||||||
# Includes packages needed for startx
|
# Includes packages needed for startx
|
||||||
services.xserver = {
|
services.xserver = {
|
||||||
|
@ -28,7 +26,7 @@
|
||||||
geekygay = {
|
geekygay = {
|
||||||
shell = pkgs.fish;
|
shell = pkgs.fish;
|
||||||
isNormalUser = true;
|
isNormalUser = true;
|
||||||
extraGroups = [ "wheel" "dialout" ];
|
extraGroups = [ "wheel" "dialout" "audio" ];
|
||||||
password = "";
|
password = "";
|
||||||
openssh.authorizedKeys.keyFiles = [
|
openssh.authorizedKeys.keyFiles = [
|
||||||
./authorized_keys
|
./authorized_keys
|
||||||
|
@ -37,7 +35,7 @@
|
||||||
# Unprivledged user for running the application.
|
# Unprivledged user for running the application.
|
||||||
appuser = {
|
appuser = {
|
||||||
isNormalUser = true;
|
isNormalUser = true;
|
||||||
extraGroups = [ "jackaudio" ];
|
extraGroups = [ "audio" ];
|
||||||
password = "";
|
password = "";
|
||||||
packages = with pkgs; [
|
packages = with pkgs; [
|
||||||
puredata
|
puredata
|
||||||
|
|
Loading…
Reference in a new issue