diff --git a/nixos/modules/printing.nix b/nixos/modules/printing.nix index 5c53202..5e24aa5 100755 --- a/nixos/modules/printing.nix +++ b/nixos/modules/printing.nix @@ -1,6 +1,6 @@ {flake, ...}: let inherit (flake.config.system.device) printer0 printer1; - geneticPPD = "drv:///sample.drv/generic.ppd"; + genericPPD = "drv:///sample.drv/generic.ppd"; pageSize = "Letter"; in { hardware.printers = { @@ -9,7 +9,7 @@ in { name = printer0.label; location = "Downstairs"; deviceUri = "https://${printer0.ip.address0}"; - model = geneticPPD; + model = genericPPD; ppdOptions = { PageSize = pageSize; }; @@ -18,7 +18,7 @@ in { name = printer1.label; location = "Upstairs"; deviceUri = "https://${printer1.ip.address0}"; - model = geneticPPD; + model = genericPPD; ppdOptions = { PageSize = pageSize; };