mirror of
https://github.com/sadan4/dotfiles.git
synced 2024-11-16 23:04:39 -05:00
14 lines
178 B
Nix
14 lines
178 B
Nix
{ pkgs, ... }: {
|
|
services = {
|
|
avahi = {
|
|
enable = true;
|
|
};
|
|
printing = {
|
|
enable = true;
|
|
drivers = with pkgs; [
|
|
hplip
|
|
];
|
|
};
|
|
};
|
|
}
|