Regenerated

This commit is contained in:
2026-04-01 21:17:58 +02:00
parent 47de7c5574
commit 019e67fbeb
7 changed files with 533 additions and 313 deletions
@@ -0,0 +1,23 @@
{ lib, config, pkgs, ... }:
{
############################
# Audio system
############################
environment.systemPackages = with pkgs; [
pulseaudio # PulseAudio daemon
pavucontrol # GUI mixer
pamixer # CLI mixer
];
############################
# Enable PulseAudio system-wide
############################
sound.enable = true;
hardware.pulseaudio.enable = true;
############################
# Optional: enable ALSA support
############################
hardware.pulseaudio.support32Bit = true; # for 32-bit apps
}
@@ -0,0 +1,16 @@
{ lib, config, pkgs, ... }:
{
############################
# Printing system
############################
services.printing.enable = true; # enable CUPS printing service
services.printing.drivers = [ "all" ]; # include all drivers (optional)
############################
# System packages for GUI management
############################
environment.systemPackages = with pkgs; [
system-config-printer # GUI to manage printers
];
}