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.
24 lines
551 B
Nix
24 lines
551 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
let
|
|
inherit (lib) mkIf mkMerge mkThenElse;
|
|
annuaire = config.r6d.machines;
|
|
currentMachine = annuaire."${config.networking.hostName}";
|
|
flags = currentMachine.configuration-flags;
|
|
in
|
|
|
|
# TODO ranger le spécifique pulseaudio
|
|
mkIf (flags.multimediaSuite && flags.graphical) {
|
|
|
|
# Paquets
|
|
environment.systemPackages = with pkgs; [
|
|
## Audio
|
|
paprefs # préferences pulseaudio
|
|
pavucontrol # mixer pulseaudio
|
|
|
|
## Video
|
|
smplayer # lecteur vidéo
|
|
vlc # lecteur vidéo
|
|
];
|
|
}
|