14 lines
249 B
Nix
14 lines
249 B
Nix
{ config, lib, pkgs, ... }
|
|
{
|
|
environment.systemPackages = with pkgs; [
|
|
]
|
|
# Enable CUPS to print documents.
|
|
services.printing.enable = true;
|
|
|
|
# sound setup
|
|
nixpkgs.config.pulseaudio.enable = true;
|
|
services.pulseaudio.enable = true;
|
|
|
|
|
|
}
|