mirror of
https://github.com/Ahwxorg/nixos-config.git
synced 2026-05-06 11:02:20 +02:00
21 lines
320 B
Nix
21 lines
320 B
Nix
{ pkgs, ... }:
|
|
{
|
|
services = {
|
|
printing = {
|
|
enable = true;
|
|
drivers = with pkgs; [
|
|
cups-filters
|
|
cups-browsed
|
|
hplipWithPlugin
|
|
];
|
|
};
|
|
|
|
# avahi = {
|
|
# enable = false;
|
|
# nssmdns4 = true;
|
|
# openFirewall = true;
|
|
# };
|
|
|
|
ipp-usb.enable = true;
|
|
};
|
|
}
|