10 lines
207 B
Nix
10 lines
207 B
Nix
{ lib, ... }:
|
|
{
|
|
imports = [
|
|
(lib.mkRemovedOptionModule [
|
|
"clan"
|
|
"postgresql"
|
|
] "The postgresql module has been migrated to a clan core option. Use clan.core.postgresql instead")
|
|
];
|
|
}
|