Initial commit with a stub for birne

This commit is contained in:
Felix Wittwer 2021-11-17 11:39:34 +01:00
commit 5cc2751787
Signed by untrusted user who does not match committer: wittwer
GPG key ID: 24363525EA0E8A99
9 changed files with 210 additions and 0 deletions

20
modules/printing.nix Normal file
View file

@ -0,0 +1,20 @@
{ pkgs, config, ... }:
{
# Enable CUPS to print documents.
services.printing.enable = true;
# services.printing.drivers = [
# pkgs.gutenprint
# ];
# set up Heiko
# hardware.printers.ensurePrinters = [
# {
# description = "Drucker im FSR Buero";
# deviceUri = "";
# location = "FSR Buero";
# model = "";
# name = "Heiko";
# }
# ];
}