nixos-config/pkgs/flake-module.nix
Felix Schröter cf42ef54d8
chore: remove custom brlaser
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.
2025-05-18 19:42:55 +02:00

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; };
};
};
}