nixfiles/pkgs/module.nix

11 lines
172 B
Nix

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