Add warning when importing microsoft/surface/ from now on

This commit is contained in:
mexisme 2023-01-10 16:27:28 +13:00
parent cca1f04705
commit c52e0880de
1 changed files with 5 additions and 3 deletions

View File

@ -1,10 +1,12 @@
{ lib, pkgs, ... }:
{ lib, ... }:
let
inherit (lib) mkDefault;
inherit (lib) warn;
in {
imports = [
./old
( warn
"Please don't import microsoft/surface/ (default.nix) any longer; use microsoft/surface/old or see microsoft/surface/old/README.md for more details."
./old )
];
}