mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-10 05:12:56 +00:00
22 lines
532 B
Nix
22 lines
532 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"; };
|
|
};
|
|
}
|