mirror of
https://github.com/librephoenix/nixos-config
synced 2025-01-19 23:25:52 +05:30
13 lines
301 B
Nix
13 lines
301 B
Nix
|
{ config, lib, pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
programs.doom-emacs = {
|
||
|
enable = true;
|
||
|
doomPrivateDir = ./.;
|
||
|
};
|
||
|
home.file.".emacs.d/themes/doom-stylix-theme.el".source = config.lib.stylix.colors {
|
||
|
template = builtins.readFile ./themes/doom-stylix-theme.el.mustache;
|
||
|
extension = ".el";
|
||
|
};
|
||
|
}
|