10 lines
219 B
Nix
10 lines
219 B
Nix
{ config, lib, ... }:
|
|
|
|
with lib;
|
|
|
|
mkIf (elem "emacs::solarized-theme" config.machine.pkgs) {
|
|
programs.emacs.init.usePackage.solarized-theme = {
|
|
enable = true;
|
|
config = "(load-theme 'solarized-dark t)";
|
|
};
|
|
}
|