config/modules/macos/default.nix

21 lines
350 B
Nix
Raw Normal View History

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