aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--configuration.nix8
-rw-r--r--packages.nix11
2 files changed, 19 insertions, 0 deletions
diff --git a/configuration.nix b/configuration.nix
index b32b727..ec2ad8e 100644
--- a/configuration.nix
+++ b/configuration.nix
@@ -22,6 +22,14 @@ in
allowBroken = false;
};
+ services.jack = {
+ jackd.enable = true;
+ alsa.enable = false;
+ loopback = {
+ enable = true;
+ };
+ };
+
# Network
networking = {
hostName = "dickhead";
diff --git a/packages.nix b/packages.nix
index 225cdfa..7e344da 100644
--- a/packages.nix
+++ b/packages.nix
@@ -78,12 +78,19 @@ let
file
at
+ # Audio
+ alsaUtils
+ qjackctl
+ qsynth
+ ardour
+
# X stuff
bc
brightnessctl
xorg.xinit
xorg.xrandr
xorg.xmodmap
+ # xorg.xkill
#xorg.xbacklight
xclip
xdo
@@ -94,6 +101,10 @@ in
# Packages
environment.systemPackages = devPackages ++ customPackages ++ apps ++ utils;
+ nixpkgs.config.permittedInsecurePackages = [
+ "ffmpeg-3.4.8"
+ ];
+
# Security wrappers
security.wrappers = {
bslock.source = "${localPkgs.bslock}/bin/bslock";