nix/home-manager/common/desktops/hyprland/themes/green.nix

9 lines
394 B
Nix
Raw Normal View History

2024-01-06 14:15:09 +01:00
{lib, inputs, pkgs, gpu, platform, theme, ...}: {
# Themes https://github.com/tinted-theming/base16-schemes
stylix = {
2024-01-06 14:19:55 +01:00
image = /etc/nixos/git/wallpapers/${theme}/wallpaper1.png;
2024-01-06 14:15:09 +01:00
polarity = "dark";
2024-01-07 14:14:25 +01:00
# base16Scheme = "${pkgs.base16-schemes}/share/themes/everforest-dark-hard.yaml";
base16Scheme = builtins.readFile ../../../../../lib/themes/everforest-dark-hard.yaml;
2024-01-06 14:15:09 +01:00
};
}