This repository has been archived on 2024-04-14. You can view files and clone it, but cannot push or open issues or pull requests.
nixos-dotfiles/system/services/printing/default.nix

7 lines
99 B
Nix
Raw Normal View History

2023-10-08 10:51:15 +01:00
{pkgs, ...}: {
2023-08-26 10:32:53 +01:00
services.printing = {
enable = true;
2023-10-08 10:51:15 +01:00
drivers = [pkgs.cnijfilter2];
2023-08-26 10:32:53 +01:00
};
}