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