NixOS 25.05 has switched to Owl-Maintain's fork of brlaser with the latest release that includes the fix for my duplex printing issues.
14 lines
259 B
Nix
14 lines
259 B
Nix
{ inputs, ... }:
|
|
{
|
|
perSystem =
|
|
{ self', pkgs, ... }:
|
|
{
|
|
packages = {
|
|
deconz = pkgs.qt5.callPackage ./deconz { };
|
|
};
|
|
|
|
apps = {
|
|
deconz = inputs.flake-utils.lib.mkApp { drv = self'.packages.deconz; };
|
|
};
|
|
};
|
|
}
|