mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-10 04:02:55 +00:00
b9d28efa4b
dark mode still isn't working
11 lines
312 B
Nix
11 lines
312 B
Nix
{ config, pkgs, lib, ... }: {
|
|
|
|
config = lib.mkIf config.gui.enable {
|
|
home-manager.users.${config.user} = {
|
|
home.packages = with pkgs; [ calibre ];
|
|
# home.sessionVariables = { CALIBRE_USE_DARK_PALETTE = 1; };
|
|
};
|
|
environment.sessionVariables = { CALIBRE_USE_DARK_PALETTE = "1"; };
|
|
};
|
|
}
|