nixos-hardware/microsoft/surface/default.nix

13 lines
255 B
Nix
Raw Normal View History

{ lib, ... }:
2022-12-04 22:01:37 -05:00
let
inherit (lib) warn;
2022-12-04 22:01:37 -05:00
in {
imports = [
( warn
"Please do not import microsoft/surface/ (default.nix) directly; use microsoft/surface/old or see microsoft/surface/old/README.md for more details."
2023-01-10 04:32:40 -05:00
./deprecated )
];
}