9 lines
255 B
Nix
9 lines
255 B
Nix
|
# Import syntax themes
|
||
|
|
||
|
{ lib, theme, pkgs, ... }: [
|
||
|
(import ./haskell.nix { inherit lib theme pkgs; })
|
||
|
(import ./rust.nix { inherit lib theme pkgs; })
|
||
|
(import ./nix.nix { inherit lib theme pkgs; })
|
||
|
(import ./common.nix { inherit lib theme pkgs; })
|
||
|
]
|