mirror of
https://github.com/librephoenix/nixos-config
synced 2025-01-19 15:15:52 +05:30
10 lines
186 B
Nix
10 lines
186 B
Nix
|
{ config, pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
# Enable printing
|
||
|
services.printing.enable = true;
|
||
|
services.avahi.enable = true;
|
||
|
services.avahi.nssmdns = true;
|
||
|
services.avahi.openFirewall = true;
|
||
|
}
|