panacea/modules/printing.nix

16 lines
203 B
Nix
Raw Normal View History

2020-05-14 03:04:30 +02:00
{ config, lib, pkgs, ... }:
{
# Enable CUPS
services.printing.enable = true;
# Enable SANE
hardware.sane = {
enable = true;
netConf = ''
192.168.1.2
10.8.0.1
'';
};
}