2023-06-18 18:10:20 +02:00
|
|
|
{ inputs, ... }:
|
|
|
|
let
|
|
|
|
themes = {
|
|
|
|
catppuccin-mocha = {
|
|
|
|
image = ./wallpapers/auto/catppuccin-mocha-rain-world.png;
|
|
|
|
base16Scheme = "${inputs.catppuccin-base16}/base16/mocha.yaml";
|
|
|
|
};
|
|
|
|
rosepine-dawn = {
|
|
|
|
image = ./wallpapers/rosepine_light_field.png;
|
|
|
|
base16Scheme = "${inputs.rosepine-base16}/rose-pine-dawn.yaml";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
in
|
2023-03-12 05:24:25 +01:00
|
|
|
{
|
|
|
|
# Select your current theme here!
|
|
|
|
imports = [
|
2023-06-18 18:10:20 +02:00
|
|
|
{ stylix = themes.catppuccin-mocha; }
|
2023-03-12 05:24:25 +01:00
|
|
|
];
|
|
|
|
|
|
|
|
# Requires me to manually turn targets on!
|
|
|
|
stylix.autoEnable = false;
|
|
|
|
}
|