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

8 lines
226 B
Nix
Raw Normal View History

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