mirror of
https://github.com/Stunkymonkey/nixos.git
synced 2025-12-13 06:05:19 +01:00
11 lines
189 B
Nix
11 lines
189 B
Nix
|
|
{ config, lib, pkgs, ... }:
|
||
|
|
|
||
|
|
{
|
||
|
|
services.printing.enable = true;
|
||
|
|
services.printing.drivers = with pkgs; [
|
||
|
|
gutenprint
|
||
|
|
hplip
|
||
|
|
];
|
||
|
|
programs.system-config-printer.enable = true;
|
||
|
|
}
|