12 lines
235 B
Nix
12 lines
235 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)";
|
|
};
|
|
}
|