HermitNix_DEPRECATED/System/appliances.nix

13 lines
258 B
Nix
Raw Normal View History

2023-11-06 19:14:02 +00:00
{ config, ... }:
{
# Enable support for flashing zsa keyboards and the flipperzero their firmware
hardware = {
keyboard.zsa.enable = true;
flipperzero.enable = true;
};
# Enable CUPS to print documents.
services.printing.enable = true;
}