17 lines
509 B
Nix
17 lines
509 B
Nix
# --- This file has been auto-generated. For permanent changes alter the appropriate block in the README.org. ---
|
|
{ lib, config, pkgs, ... }:
|
|
|
|
{
|
|
############################
|
|
# Printing system
|
|
############################
|
|
services.printing.enable = true; # enable CUPS printing service
|
|
|
|
############################
|
|
# System packages for GUI management
|
|
############################
|
|
environment.systemPackages = with pkgs; [
|
|
system-config-printer # GUI to manage printers
|
|
];
|
|
}
|