2025-05-01 23:42:32 -07:00
|
|
|
{
|
|
|
|
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
|
|
|
}
|