config/modules/nixos/default.nix

20 lines
294 B
Nix
Raw Normal View History

2025-05-08 00:19:14 -07:00
{
lib,
pkgs,
...
2025-05-12 15:19:01 -07:00
}:
{
2025-05-01 12:41:47 -07:00
imports = [
./boot.nix
./ld.nix
./nvidia.nix
./services.nix
];
2025-05-07 10:22:05 -07:00
# make 'shared.darwin' not an error to define.
options.shared.darwin = lib.mkOption {
2025-05-08 00:19:14 -07:00
type = lib.types.anything;
2025-05-12 15:19:01 -07:00
default = { };
2025-05-08 00:19:14 -07:00
description = "no-op on linux";
2025-05-07 10:22:05 -07:00
};
2025-05-01 12:41:47 -07:00
}