config/modules/nixos/default.nix
2025-08-31 18:49:59 -07:00

21 lines
344 B
Nix

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