17 lines
453 B
Nix
17 lines
453 B
Nix
|
{ config, lib, pkgs, ... }:
|
||
|
|
||
|
with lib;
|
||
|
|
||
|
mkIf (elem "emacs::doom-themes" config.machine.pkgs) {
|
||
|
programs.emacs.init.usePackage.doom-themes = {
|
||
|
enable = true;
|
||
|
config = ''
|
||
|
;; Load the theme (doom-one, doom-molokai, etc); keep in mind that each theme
|
||
|
;; may have their own settings.
|
||
|
(load-theme 'doom-solarized-dark t)
|
||
|
|
||
|
;; ${optionalString (elem "emacs::org" config.machine.pkgs) "(doom-themes-org-config)"}
|
||
|
'';
|
||
|
};
|
||
|
}
|