1
Fork 0
satellite/modules/themes/themes.nix

10 lines
160 B
Nix
Raw Normal View History

2022-03-10 20:59:18 +01:00
{ pkgs }:
let githubVariant = import ./githubVariant.nix;
in
lib.map (theme: pkgs.callPackage theme { }) [
githubVariant
"light"
githubVariant
"dark"
]