1
Fork 0
satellite/modules/themes/themes.nix
2022-03-10 21:59:18 +02:00

10 lines
160 B
Nix

{ pkgs }:
let githubVariant = import ./githubVariant.nix;
in
lib.map (theme: pkgs.callPackage theme { }) [
githubVariant
"light"
githubVariant
"dark"
]