nixos-config/common/full-install.nix

20 lines
397 B
Nix
Raw Normal View History

2024-04-17 22:28:27 +02:00
{pkgs, ...}: {
2024-04-17 20:39:12 +02:00
# Enable CUPS to print documents.
services.printing.enable = true;
# Enable sound with pipewire.
sound.enable = true;
hardware.pulseaudio.enable = false;
security.rtkit.enable = true;
services.pipewire = {
enable = true;
alsa.enable = true;
alsa.support32Bit = true;
pulse.enable = true;
};
environment.systemPackages = with pkgs; [
#
];
2024-04-17 22:28:27 +02:00
}