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

17 lines
395 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";
2022-03-13 13:16:37 +01:00
# wallpaper = ./wallpapers/wall.png;
wallpaper = ./wallpapers/synthwave.jpg;
transparency = 0.8;
})
(githubVariant {
variant = "dark";
wallpaper = ./wallpapers/synthwave.jpg;
transparency = 0.8;
})
2022-03-10 20:59:18 +01:00
]