mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-12 23:42:56 +00:00
install calibre
dark mode still isn't working
This commit is contained in:
parent
78ea55f029
commit
b9d28efa4b
@ -27,6 +27,7 @@ nixpkgs.lib.nixosSystem {
|
|||||||
../../modules/applications/media.nix
|
../../modules/applications/media.nix
|
||||||
../../modules/applications/1password.nix
|
../../modules/applications/1password.nix
|
||||||
../../modules/applications/discord.nix
|
../../modules/applications/discord.nix
|
||||||
|
../../modules/applications/calibre.nix
|
||||||
../../modules/editor/neovim
|
../../modules/editor/neovim
|
||||||
../../modules/editor/notes.nix
|
../../modules/editor/notes.nix
|
||||||
];
|
];
|
||||||
|
10
modules/applications/calibre.nix
Normal file
10
modules/applications/calibre.nix
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
{ 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"; };
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user