mirror of
https://github.com/sadan4/dotfiles.git
synced 2025-01-18 19:23:39 -05:00
13 lines
178 B
Nix
13 lines
178 B
Nix
{ pkgs, ... }: {
|
|
services = {
|
|
avahi = {
|
|
enable = true;
|
|
};
|
|
printing = {
|
|
enable = true;
|
|
drivers = with pkgs; [
|
|
hplip
|
|
];
|
|
};
|
|
};
|
|
}
|