config/modules/macos/default.nix

22 lines
345 B
Nix
Raw Permalink Normal View History

{
pkgs,
lib,
...
2025-05-12 15:19:01 -07:00
}:
{
2025-05-07 10:22:05 -07:00
imports = [
# sort-lines: start
./mac-app-store.nix
./system.nix
./icons.nix
./tiling
# sort-lines: end
];
# make 'shared.linux' not an error to define.
options.shared.linux = 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 darwin";
2025-05-07 10:22:05 -07:00
};
2025-05-01 12:41:47 -07:00
}