21 lines
367 B
Nix
21 lines
367 B
Nix
|
{pkgs, ...}: {
|
||
|
# Enable printing
|
||
|
services = {
|
||
|
printing = {
|
||
|
enable = true;
|
||
|
drivers = with pkgs; [hplip];
|
||
|
webInterface = false;
|
||
|
};
|
||
|
avahi = {
|
||
|
enable = true;
|
||
|
nssmdns4 = true;
|
||
|
openFirewall = true;
|
||
|
};
|
||
|
};
|
||
|
|
||
|
# Install programs system-wide
|
||
|
environment.systemPackages = with pkgs; [
|
||
|
system-config-printer
|
||
|
];
|
||
|
}
|