mirror of
https://github.com/kmein/niveum
synced 2026-03-17 10:41:06 +01:00
10 lines
163 B
Nix
10 lines
163 B
Nix
|
|
{ pkgs, ... }:
|
||
|
|
{
|
||
|
|
services.printing = {
|
||
|
|
enable = true;
|
||
|
|
drivers = [ pkgs.hplipWithPlugin ];
|
||
|
|
};
|
||
|
|
|
||
|
|
networking.hosts."192.168.178.27" = [ "officejet" ];
|
||
|
|
}
|