config/modules/nixos/default.nix
2025-07-04 23:44:41 -07:00

18 lines
277 B
Nix

{
lib,
pkgs,
...
}:
{
imports = [
./boot.nix
./ld.nix
./services.nix
];
# make 'shared.darwin' not an error to define.
options.shared.darwin = lib.mkOption {
type = lib.types.anything;
default = { };
description = "no-op on linux";
};
}