nixfiles/pkgs/module.nix

12 lines
218 B
Nix

{ config, lib, ... }:
{
imports = [ ./legacy-module.nix ];
config = {
perSystem = { system, inputs', self', pkgs, ...}: {
packages = {
lucem = pkgs.callPackage ./lucem { };
};
};
};
}