dotfiles/user-modules/desktop/theming/themes/sakura.nix

24 lines
350 B
Nix
Raw Permalink Normal View History

2024-07-20 04:10:56 +00:00
{
config,
lib,
pkgs,
...
}:
with lib;
let
2025-02-17 14:38:32 +00:00
cfg = config.desktop.theming.themes.sakura;
2024-07-20 04:10:56 +00:00
in
{
options = {
2025-02-17 14:38:32 +00:00
desktop.theming.themes.sakura = {
2024-07-20 04:10:56 +00:00
enable = mkEnableOption "sakura";
};
};
2025-02-17 14:38:32 +00:00
config.desktop.theming = mkIf cfg.enable {
2024-07-20 04:10:56 +00:00
darkMode = false;
colorScheme = "${pkgs.base16-schemes}/share/themes/sakura.yaml";
};
}