mirror of
https://github.com/harivansh-afk/nix.git
synced 2026-04-15 18:01:29 +00:00
18 lines
243 B
Nix
18 lines
243 B
Nix
{
|
|
lib,
|
|
hostConfig,
|
|
...
|
|
}:
|
|
{
|
|
imports = [
|
|
./common.nix
|
|
]
|
|
++ lib.optionals hostConfig.isDarwin [
|
|
./colima.nix
|
|
./rectangle.nix
|
|
./karabiner.nix
|
|
]
|
|
++ lib.optionals hostConfig.isLinux [
|
|
./netty-worktree.nix
|
|
];
|
|
}
|