You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
351 B
Nix
19 lines
351 B
Nix
9 years ago
|
{ config, lib, pkgs, ... }:
|
||
9 years ago
|
|
||
|
let
|
||
9 years ago
|
inherit (lib) mkIf mkMerge mkThenElse;
|
||
9 years ago
|
cfg = config.r6d.config-generator;
|
||
|
computers = config.r6d.computers;
|
||
|
profiles = config.r6d.profiles;
|
||
|
in
|
||
|
|
||
9 years ago
|
mkIf profiles.isDesktop {
|
||
|
|
||
9 years ago
|
# Pulse Audio
|
||
9 years ago
|
hardware.pulseaudio = {
|
||
9 years ago
|
enable = true;
|
||
|
support32Bit = true;
|
||
8 years ago
|
daemon.config = { flat-volumes = "no"; };
|
||
9 years ago
|
};
|
||
|
}
|