17 lines
215 B
Nix
17 lines
215 B
Nix
{
|
|
lib,
|
|
device,
|
|
...
|
|
}: {
|
|
imports =
|
|
[]
|
|
++ (lib.optionals device.hasGui [
|
|
./cursor.nix
|
|
./firefox.nix
|
|
./ghostty.nix
|
|
./kitty.nix
|
|
./vscodium.nix
|
|
./wezterm.nix
|
|
]);
|
|
}
|