mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-10 01:42:55 +00:00
30 lines
550 B
Nix
30 lines
550 B
Nix
{
|
|
config,
|
|
pkgs,
|
|
lib,
|
|
...
|
|
}:
|
|
{
|
|
|
|
options = {
|
|
calibre = {
|
|
enable = lib.mkEnableOption {
|
|
description = "Enable Calibre.";
|
|
default = false;
|
|
};
|
|
};
|
|
};
|
|
|
|
config = lib.mkIf (config.gui.enable && config.calibre.enable) {
|
|
home-manager.users.${config.user} = {
|
|
home.packages = with pkgs; [ calibre ];
|
|
# home.sessionVariables = { CALIBRE_USE_DARK_PALETTE = 1; };
|
|
};
|
|
|
|
# Forces Calibre to use dark mode
|
|
environment.sessionVariables = {
|
|
CALIBRE_USE_DARK_PALETTE = "1";
|
|
};
|
|
};
|
|
}
|