all repos — nixfiles @ 7b6b9247cde2aee34b09c738dcfa8966e0852d51

System and user configuration, managed by nix and home-manager

Add audio configuration
Alan Pearce alan@alanpearce.eu
Sat, 09 Sep 2017 14:21:03 +0200
commit

7b6b9247cde2aee34b09c738dcfa8966e0852d51

parent

057e1926729ababa1cc6533e6ff5b5e52575513d

2 files changed, 13 insertions(+), 0 deletions(-)

jump to
A modules/audio.nix
@@ -0,0 +1,12 @@+{ config, pkgs, ... }:
+
+{ hardware.pulseaudio = {
+    enable = true;
+    support32Bit = true;
+  };
+
+  environment.systemPackages = with pkgs; [
+    pamixer
+    pavucontrol
+  ];
+}
M satoshipad.nixsatoshipad.nix
@@ -6,6 +6,7 @@ ./hardware-configuration.nix     ./modules/grub2.nix
     ./modules/laptop.nix
     ./modules/thinkpad.nix
+    ./modules/audio.nix
   ];
 
   networking.hostName = "satoshipad";