config/modules/nixos/default.nix

15 lines
293 B
Nix
Raw Normal View History

2025-05-07 10:22:05 -07:00
{ lib, pkgs, ... }: {
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 {
type = lib.types.anything;
default = {};
description = "no-op on linux";
};
2025-05-01 12:41:47 -07:00
}